@kizmann/nano-ui 0.8.12 → 0.8.14

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kizmann/nano-ui",
3
- "version": "0.8.12",
3
+ "version": "0.8.14",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Eduard Kizmann <kizmann@protonmail.ch>",
@@ -334,10 +334,10 @@ export default {
334
334
  this.drag = new NDraghandler(this);
335
335
 
336
336
  Dom.find(window).on('keydown',
337
- this.watchModifierDown, this._uid);
337
+ this.watchModifierDown, this._.uid);
338
338
 
339
339
  Dom.find(window).on('keyup',
340
- this.watchModifierUp, this._uid);
340
+ this.watchModifierUp, this._.uid);
341
341
  },
342
342
 
343
343
  mounted()
@@ -48,7 +48,7 @@ export default {
48
48
  minimum: {
49
49
  default()
50
50
  {
51
- return 300;
51
+ return 120;
52
52
  },
53
53
  type: [Number]
54
54
  },
@@ -56,7 +56,7 @@ export default {
56
56
  debounce: {
57
57
  default()
58
58
  {
59
- return 300;
59
+ return 120;
60
60
  },
61
61
  type: [Number]
62
62
  }
@@ -598,7 +598,7 @@ export default {
598
598
 
599
599
  onUpdate()
600
600
  {
601
- if ( ! this.fixture ) {
601
+ if ( ! this.fixture || ! this.$refs.content ) {
602
602
  return;
603
603
  }
604
604