client/js/renderer/baseeditor.js
changeset 293 fba23fde14ba
parent 284 fa8035885814
child 433 e457ec945e50
--- a/client/js/renderer/baseeditor.js	Fri May 16 12:37:51 2014 +0200
+++ b/client/js/renderer/baseeditor.js	Fri May 16 14:09:57 2014 +0200
@@ -1,7 +1,7 @@
-"use strict";
 
 define(['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {
-    
+    'use strict';
+
     var Utils = requtils.getUtils();
 
     /* _BaseEditor Begin */
@@ -17,12 +17,12 @@
             this.editor_block.add.apply(this.editor_block, _pts);
             this.editor_block.strokeWidth = this.options.tooltip_border_width;
             this.editor_block.strokeColor = this.options.tooltip_border_color;
-            this.editor_block.opacity = .8;
+            this.editor_block.opacity = 0.8;
             this.editor_$ = $('<div>')
             .appendTo(this.renderer.editor_$)
             .css({
                 position: "absolute",
-                opacity: .8
+                opacity: 0.8
             })
             .hide();
         },
@@ -31,7 +31,7 @@
             this.editor_$.remove();
         }
     });
-    
+
     /* _BaseEditor End */
 
     return _BaseEditor;