Use single quotes

This commit is contained in:
Ruud
2014-11-26 21:47:39 +01:00
parent 16f8e7e123
commit 38c6266f9c
+2 -2
View File
@@ -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();
},