@@ -138,14 +138,14 @@ Blockly.CollapseGutter.prototype.createDom = function() {
138138 // Hover effects (same as minimap) - save listeners for cleanup
139139 var self = this ;
140140 this . eventListeners_ . push (
141- Blockly . bindEvent_ ( this . svgGroup_ , 'mouseenter' , null , function ( ) {
142- self . svgGroup_ . setAttribute ( 'opacity' , '0.8' ) ;
143- } )
141+ Blockly . bindEvent_ ( this . svgGroup_ , 'mouseenter' , null , function ( ) {
142+ self . svgGroup_ . setAttribute ( 'opacity' , '0.8' ) ;
143+ } )
144144 ) ;
145145 this . eventListeners_ . push (
146- Blockly . bindEvent_ ( this . svgGroup_ , 'mouseleave' , null , function ( ) {
147- self . svgGroup_ . setAttribute ( 'opacity' , '0.5' ) ;
148- } )
146+ Blockly . bindEvent_ ( this . svgGroup_ , 'mouseleave' , null , function ( ) {
147+ self . svgGroup_ . setAttribute ( 'opacity' , '0.5' ) ;
148+ } )
149149 ) ;
150150
151151 return this . svgGroup_ ;
@@ -244,7 +244,7 @@ Blockly.CollapseGutter.prototype.createButton_ = function(block, inputName) {
244244 } , null ) ;
245245
246246 // Transparent circle for larger click area (invisible)
247- var clickArea = Blockly . utils . createSvgElement ( 'circle' , {
247+ Blockly . utils . createSvgElement ( 'circle' , {
248248 'r' : '10' ,
249249 'fill' : 'transparent' ,
250250 'stroke' : 'none'
0 commit comments