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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "family": "jmgraph",
3
3
  "name": "jmgraph",
4
- "version": "3.2.28",
4
+ "version": "3.2.29",
5
5
  "description": "一个简单的canvas画图库",
6
6
  "homepage": "https://surl.fit/tools/tools/jmgraph",
7
7
  "keywords": [
@@ -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) {