chore(demo): use https in the generated link
This avoids the popup about an unsecure connection when opening examples in plnkr. Closes #6132
This commit is contained in:
committed by
Wesley Cho
parent
87a373936d
commit
58e0433b96
@@ -4,7 +4,7 @@ angular.module('plunker', [])
|
||||
|
||||
return function (ngVersion, bsVersion, version, module, content) {
|
||||
|
||||
var form = angular.element('<form style="display: none;" method="post" action="http://plnkr.co/edit/?p=preview" target="_blank"></form>');
|
||||
var form = angular.element('<form style="display: none;" method="post" action="https://plnkr.co/edit/?p=preview" target="_blank"></form>');
|
||||
var addField = function (name, value) {
|
||||
var input = angular.element('<input type="hidden" name="' + name + '">');
|
||||
input.attr('value', value);
|
||||
|
||||
Reference in New Issue
Block a user