jmgraph 3.2.28 → 3.2.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/core/jmControl.js
CHANGED
|
@@ -1777,10 +1777,7 @@ export default class jmControl extends jmProperty {
|
|
|
1777
1777
|
runEventHandle(name, args) {
|
|
1778
1778
|
let events = this.getEvent(name);
|
|
1779
1779
|
if(events) {
|
|
1780
|
-
|
|
1781
|
-
if(name === 'mousemove' && this.type == 'jmResize') {
|
|
1782
|
-
console.log('resize mousemove', args, events);
|
|
1783
|
-
}
|
|
1780
|
+
|
|
1784
1781
|
var self = this;
|
|
1785
1782
|
if(!Array.isArray(args)) args = [args];
|
|
1786
1783
|
events.each(function(i, handle) {
|