angular-gridster2
Advanced tools
Comparing version 4.0.1 to 4.0.2
@@ -184,4 +184,4 @@ "use strict"; | ||
else if (this.$options.gridType === 'fixed') { | ||
this.curColWidth = this.$options.fixedColWidth; | ||
this.curRowHeight = this.$options.fixedRowHeight; | ||
this.curColWidth = this.$options.fixedColWidth + this.$options.margin; | ||
this.curRowHeight = this.$options.fixedRowHeight + this.$options.margin; | ||
addClass = 'fixed'; | ||
@@ -193,3 +193,3 @@ removeClass1 = 'fit'; | ||
else if (this.$options.gridType === 'verticalFixed') { | ||
this.curRowHeight = this.$options.fixedRowHeight; | ||
this.curRowHeight = this.$options.fixedRowHeight + this.$options.margin; | ||
addClass = 'scrollVertical'; | ||
@@ -201,3 +201,3 @@ removeClass1 = 'fit'; | ||
else if (this.$options.gridType === 'horizontalFixed') { | ||
this.curColWidth = this.$options.fixedColWidth; | ||
this.curColWidth = this.$options.fixedColWidth + this.$options.margin; | ||
addClass = 'scrollHorizontal'; | ||
@@ -204,0 +204,0 @@ removeClass1 = 'fit'; |
@@ -207,3 +207,2 @@ "use strict"; | ||
function cancelDrag() { | ||
console.log(arguments); | ||
clearTimeout(timeout); | ||
@@ -210,0 +209,0 @@ cancelOnBlur(); |
{ | ||
"name": "angular-gridster2", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"license": "MIT", | ||
@@ -64,4 +64,4 @@ "main": "dist/index.js", | ||
"@angular/router": "5.0.1", | ||
"@types/jasmine": "2.6.3", | ||
"@types/node": "8.0.51", | ||
"@types/jasmine": "2.8.2", | ||
"@types/node": "8.0.53", | ||
"codelyzer": "4.0.1", | ||
@@ -68,0 +68,0 @@ "core-js": "2.5.1", |
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
169767
2960