From 47348bd3365e44728a7f5273f8eb35fdd31588e5 Mon Sep 17 00:00:00 2001 From: topkek Date: Sat, 1 Nov 2014 23:05:56 +0000 Subject: [PATCH 1/2] Comment out example --- js/options/user-css.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/options/user-css.js b/js/options/user-css.js index 840bcd1f..3a94e0d7 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 "http://example.com/style.css"; */'); } else { textarea.text(localStorage.user_css); From 331c10d2f2f706cd4fcbbd259a8cf39b2ea20ed3 Mon Sep 17 00:00:00 2001 From: topkek Date: Sat, 1 Nov 2014 23:06:49 +0000 Subject: [PATCH 2/2] Comment out example --- js/options/user-js.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/options/user-js.js b/js/options/user-js.js index 0b7d140f..338e66d6 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("http://example.com/script.js"); */'); } else { textarea.text(localStorage.user_js);