]> source.dussan.org Git - svg.js.git/commitdiff
search and replace replaced to much
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Tue, 27 Feb 2018 11:17:37 +0000 (12:17 +0100)
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Tue, 27 Feb 2018 11:17:37 +0000 (12:17 +0100)
src/event.js

index 22ff152dd662cf451cd6d45007fefa9c01001444..65b13b01c185bd50450c2ed1266fec7c6b051a09 100644 (file)
@@ -22,7 +22,7 @@
     }
   })
 
-SVG.listener = 0
+SVG.listenerId = 0
 
 // Add event binder in the SVG namespace
 SVG.on = function (node, events, listener, binding, options) {
@@ -35,7 +35,7 @@ SVG.on = function (node, events, listener, binding, options) {
   var bag = n.instance.events
 
   // add id to listener
-  if (!listener._svgjsListenerId) { listener._svgjsListenerId = ++SVG.listener }
+  if (!listener._svgjsListenerId) { listener._svgjsListenerId = ++SVG.listenerId }
 
   events.split(SVG.regex.delimiter).forEach(function (event) {
     var ev = event.split('.')[0]