should it be https? (#3362)

safari fails with http
pull/3389/head
Liu Yuyang 2017-03-09 16:15:40 +08:00 committed by baiyaaaaa
parent 12cefcf26a
commit 3768ba2bcf
1 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@
const node = document.createElement('textarea'); const node = document.createElement('textarea');
form.method = 'post'; form.method = 'post';
form.action = 'http://jsfiddle.net/api/post/library/pure/'; form.action = 'https://jsfiddle.net/api/post/library/pure/';
form.target = '_blank'; form.target = '_blank';
for (let name in data) { for (let name in data) {
@ -255,4 +255,4 @@
}); });
} }
}; };
</script> </script>