@wildebeest/boxlayout
Advanced tools
Comparing version 0.4.3 to 0.4.4
@@ -72,3 +72,3 @@ "use strict"; | ||
this.createDragableDevider(this.blueprints.deviderRight, this.builers.vertical).getEmitter().on('wbDrag', function (event) { | ||
_this.positions.right.moveBy(event.horizontal); | ||
_this.positions.right.moveBy(-event.horizontal); | ||
}); | ||
@@ -75,0 +75,0 @@ this.createDragableDevider(this.blueprints.deviderBottom, this.builers.horizontal).getEmitter().on('wbDrag', function (event) { |
@@ -37,3 +37,3 @@ "use strict"; | ||
for (var i = 0; i < this.inverseBindings.length; i++) { | ||
this.inverseBindings[i].update(this.value); | ||
this.inverseBindings[i].update(this.max - this.value); | ||
} | ||
@@ -40,0 +40,0 @@ }; |
{ | ||
"name": "@wildebeest/boxlayout", | ||
"version": "0.4.3", | ||
"version": "0.4.4", | ||
"description": "Box Layout module for creating fullscreen admin enviroments", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -75,3 +75,3 @@ import { injectable, inject } from "inversify"; | ||
this.createDragableDevider(this.blueprints.deviderRight, this.builers.vertical).getEmitter().on('wbDrag', (event: any) => { | ||
this.positions.right.moveBy(event.horizontal); | ||
this.positions.right.moveBy(-event.horizontal); | ||
}); | ||
@@ -78,0 +78,0 @@ this.createDragableDevider(this.blueprints.deviderBottom, this.builers.horizontal).getEmitter().on('wbDrag', (event: any) => { |
@@ -55,3 +55,3 @@ import { Binding } from "../binding/Binding"; | ||
for (let i = 0; i < this.inverseBindings.length; i++) { | ||
this.inverseBindings[i].update(this.value); | ||
this.inverseBindings[i].update(this.max - this.value); | ||
} | ||
@@ -58,0 +58,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
101218