diff options
Diffstat (limited to 'sphinx/themes/basic/static/websupport.js')
-rw-r--r-- | sphinx/themes/basic/static/websupport.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/themes/basic/static/websupport.js b/sphinx/themes/basic/static/websupport.js index ac247c5b8..51a5a7d7c 100644 --- a/sphinx/themes/basic/static/websupport.js +++ b/sphinx/themes/basic/static/websupport.js @@ -10,8 +10,8 @@ */ (function($) { - $.fn.autogrow = function(){ - return this.each(function(){ + $.fn.autogrow = function() { + return this.each(function() { var textarea = this; $.fn.autogrow.resize(textarea); @@ -582,7 +582,7 @@ return escape ? esc.text(cur || "").html() : cur; } - return template.replace(/<([%#])([\w\.]*)\1>/g, function(){ + return template.replace(/<([%#])([\w\.]*)\1>/g, function() { return handle(arguments[2], arguments[1] == '%' ? true : false); }); } |