Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angular-sticky-table-header

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-sticky-table-header - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

2

bower.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc