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

angular-ez-plus

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-ez-plus - npm Package Compare versions

Comparing version 1.1.5 to 1.1.18

start-server.bat

4

bower.json
{
"name": "angular-ez-plus",
"version": "1.1.5",
"version": "1.1.18",
"author": {

@@ -30,3 +30,3 @@ "name": "Igor Lino",

"angular": "~1.3.4",
"ez-plus": "~1.1.12"
"ez-plus": "~1.1.18"
},

@@ -33,0 +33,0 @@ "devDependencies": {

@@ -0,0 +0,0 @@ angular.module('elevatezoomdemo', [

@@ -0,0 +0,0 @@ angular.module('elevatezoomdemo.controllers', []).

@@ -81,9 +81,9 @@ (function () {

$scope.$on("ezp-hidesAll", function (e, msg) {
$scope.$on('ezp-hidesAll', function (e, msg) {
hideZoom();
});
$scope.$on("ezp-showAll", function (e, msg) {
$scope.$on('ezp-showAll', function (e, msg) {
showZoom();
});
$scope.$on("ezp-disableZoom", function (e, msg) {
$scope.$on('ezp-disableZoom', function (e, msg) {
var plugin = angular.element($element).data('ezPlus');

@@ -94,3 +94,3 @@ if (plugin) {

});
$scope.$on("ezp-enableZoom", function (e, msg) {
$scope.$on('ezp-enableZoom', function (e, msg) {
var plugin = angular.element($element).data('ezPlus');

@@ -101,2 +101,6 @@ if (plugin) {

});
//updates options dinamically
$scope.$watch('ezpOptions', function (newValue, oldValue) {
angular.extend(options, $scope.ezpOptions);
});
$scope.$watch('ezpModel', function (newValue, oldValue) {

@@ -157,18 +161,19 @@ var image = newValue;

function hideZoom() {
var action='hide';
var action = 'hide';
var plugin = angular.element($element).data('ezPlus');
if (plugin) {
plugin.showHideZoomContainer(action);
plugin.showHideWindow(action);
plugin.showHideTint(action);
plugin.showHideLens(action);
/*plugin.showHideWindow(action);
plugin.showHideTint(action);
plugin.showHideLens(action);*/
}
}
function showZoom() {
var action='show';
var action = 'show';
var plugin = angular.element($element).data('ezPlus');
if (plugin) {
plugin.showHideLens(action);
plugin.showHideTint(action);
plugin.showHideWindow(action);
/*plugin.showHideLens(action);
plugin.showHideTint(action);
plugin.showHideWindow(action);*/
plugin.showHideZoomContainer(action);

@@ -175,0 +180,0 @@ }

{
"name": "angular-ez-plus",
"version": "1.1.5",
"version": "1.1.18",
"title": "Angular EZ Plus",

@@ -35,3 +35,3 @@ "description": "Angular directive for ElevateZoom Plus.",

"angular": "~1.3.4",
"ez-plus": "~1.1.12"
"ez-plus": "~1.1.18"
},

@@ -38,0 +38,0 @@ "devDependencies": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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