allow browser to use https for pastebin embed
This commit is contained in:
parent
573b090ed2
commit
4a0ed97934
1 changed files with 2 additions and 2 deletions
|
@ -457,11 +457,11 @@ plugins.factory('userPlugins', function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
var pastebinPlugin = new UrlPlugin('Pastebin', function(url) {
|
var pastebinPlugin = new UrlPlugin('Pastebin', function(url) {
|
||||||
var regexp = /^http:\/\/pastebin.com\/([^.?]+)/i;
|
var regexp = /^https?:\/\/pastebin.com\/([^.?]+)/i;
|
||||||
var match = url.match(regexp);
|
var match = url.match(regexp);
|
||||||
if (match) {
|
if (match) {
|
||||||
var id = match[1],
|
var id = match[1],
|
||||||
embedurl = "http://pastebin.com/embed_iframe/" + id,
|
embedurl = "//pastebin.com/embed_iframe/" + id,
|
||||||
element = angular.element('<iframe></iframe>')
|
element = angular.element('<iframe></iframe>')
|
||||||
.attr('src', embedurl)
|
.attr('src', embedurl)
|
||||||
.attr('width', '100%')
|
.attr('width', '100%')
|
||||||
|
|
Loading…
Reference in a new issue