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

angular-stackables

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-stackables - npm Package Compare versions

Comparing version 0.0.13 to 0.0.14

2

bower.json
{
"name": "angular-stackables",
"version": "0.0.13",
"version": "0.0.14",
"description": "AngularJS stackable widgets built on HTML5 dialog.",

@@ -5,0 +5,0 @@ "authors": [

{
"name": "angular-stackables",
"version": "0.0.13",
"version": "0.0.14",
"dependencies": {}
}

@@ -314,6 +314,7 @@ /*!

// add/remove toggle classes when state.show changes
// update state and add/remove toggle classes when state.show changes
scope.$watch(function() {
return state.show;
}, function(value) {
updateState(state);
if(toggleClasses) {

@@ -366,3 +367,7 @@ if(value === true) {

var set = get.assign || angular.noop;
state = get(scope) || {};
state = get(scope);
if(!state) {
state = {};
set(scope, state);
}
if(!('show' in state)) {

@@ -372,3 +377,2 @@ state.show = false;

updateState(state);
set(scope, state);
}

@@ -375,0 +379,0 @@

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