From 38c6266f9c5abd0e336a0fd279c5d10e91c8dd5d Mon Sep 17 00:00:00 2001 From: Ruud Date: Wed, 26 Nov 2014 21:47:39 +0100 Subject: [PATCH] Use single quotes --- couchpotato/static/scripts/page/settings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/static/scripts/page/settings.js b/couchpotato/static/scripts/page/settings.js index dadfd35..9d083a1 100644 --- a/couchpotato/static/scripts/page/settings.js +++ b/couchpotato/static/scripts/page/settings.js @@ -885,10 +885,10 @@ Option.Directory = new Class({ new Element('li.empty', { 'text': 'Selected folder is empty' }).inject(self.dir_list) - + //fix for webkit type browsers to refresh the dom for the file browser //http://stackoverflow.com/questions/3485365/how-can-i-force-webkit-to-redraw-repaint-to-propagate-style-changes - self.dir_list.setStyle("webkitTransform", "scale(1)") + self.dir_list.setStyle('webkitTransform', 'scale(1)'); self.caretAtEnd(); },