angular-sticky-table-header
Advanced tools
Comparing version 0.2.1 to 0.2.2
{ | ||
"name": "angular-sticky-table-header", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"description": "Sticky headers for tables", | ||
@@ -5,0 +5,0 @@ "main": "dist/angular-sticky-table-header.js", |
@@ -149,2 +149,3 @@ angular.module('watchDom', []).constant('watchDomOptions', { | ||
scope.resetClone(); | ||
scope.toggleClone(false); | ||
} | ||
@@ -151,0 +152,0 @@ } |
{ | ||
"name": "angular-sticky-table-header", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"description": "Sticky headers for tables", | ||
@@ -5,0 +5,0 @@ "main": "dist/angular-sticky-table-header.js", |
@@ -214,2 +214,3 @@ angular | ||
scope.resetClone(); | ||
scope.toggleClone(false); | ||
} | ||
@@ -216,0 +217,0 @@ |
@@ -361,8 +361,10 @@ // Generated by CoffeeScript 1.7.1 | ||
}); | ||
return it('should call #on and #resetClone with no arguments if the 1st argument is truthy', function() { | ||
return it('should call #on and #resetClone with no arguments, and #toggleClone with false if the 1st argument is truthy', function() { | ||
spyOn(this.scope, 'on'); | ||
spyOn(this.scope, 'resetClone'); | ||
spyOn(this.scope, 'toggleClone'); | ||
this.scope.changeDisabled(false); | ||
expect(this.scope.on).toHaveBeenCalledWith; | ||
return expect(this.scope.resetClone).toHaveBeenCalledWith; | ||
expect(this.scope.resetClone).toHaveBeenCalledWith; | ||
return expect(this.scope.toggleClone).toHaveBeenCalledWith(false); | ||
}); | ||
@@ -369,0 +371,0 @@ }); |
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
57291
783