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:
Martin Staffa
2016-07-29 10:01:22 +02:00
committed by Wesley Cho
parent 87a373936d
commit 58e0433b96
+1 -1
View File
@@ -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);