From ee2c58724f89e059025e5fb57f2f0396dbb61797 Mon Sep 17 00:00:00 2001 From: Equus Date: Sat, 1 Jul 2017 20:30:21 +0200 Subject: [PATCH] Comment out placeholder example code in user-js and user-css --- js/options/user-css.js | 2 +- js/options/user-js.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/options/user-css.js b/js/options/user-css.js index fed91ab3..c3b82ab6 100644 --- a/js/options/user-css.js +++ b/js/options/user-css.js @@ -45,7 +45,7 @@ var update_textarea = function() { textarea.text("/* "+_("Enter here your own CSS rules...")+" */\n" + "/* "+_("If you want to make a redistributable style, be sure to\nhave a Yotsuba B theme selected.")+" */\n" + "/* "+_("You can include CSS files from remote servers, for example:")+" */\n" + - '@import "http://example.com/style.css";'); + '/* @import "https://example.com/style.css"; */'); } else { textarea.text(localStorage.user_css); diff --git a/js/options/user-js.js b/js/options/user-js.js index 0ba9b1d0..aaed7d01 100644 --- a/js/options/user-js.js +++ b/js/options/user-js.js @@ -54,7 +54,7 @@ var update_textarea = function() { textarea.text("/* "+_("Enter here your own Javascript code...")+" */\n" + "/* "+_("Have a backup of your storage somewhere, as messing here\nmay render you this website unusable.")+" */\n" + "/* "+_("You can include JS files from remote servers, for example:")+" */\n" + - 'load_js("http://example.com/script.js");'); + '/* load_js("https://example.com/script.js"); */'); } else { textarea.text(localStorage.user_js);