From 2a7d571f810d7f51eedbd8a0b1765cd320e8481b Mon Sep 17 00:00:00 2001 From: Maksim Krylosov Date: Tue, 23 Jun 2015 23:15:14 +0300 Subject: [PATCH] moved from jquery-plugins to npm --- .gitignore | 1 + README.md | 2 +- abigimage.jquery.js | 2 +- index.html | 2 +- package.json | 41 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 45 insertions(+), 3 deletions(-) create mode 100644 package.json diff --git a/.gitignore b/.gitignore index 9f11b75..1fe1b00 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .idea/ +node_modules/ diff --git a/README.md b/README.md index 9cb2994..2183dee 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ Also, you can use `data-href` attribute on any element, not only links. ## Changes -- *1.3.0* - fixed image caching, added `unbind` method. +- **1.3.1** - fixed image caching, added `unbind` method. ## License diff --git a/abigimage.jquery.js b/abigimage.jquery.js index 34fd3e7..24b42cd 100644 --- a/abigimage.jquery.js +++ b/abigimage.jquery.js @@ -1,6 +1,6 @@ /** * http://aeqdev.com/tools/js/abigimage/ - * v 1.3.0 + * v 1.3.1 * * Copyright © 2014 Maksim Krylosov * diff --git a/index.html b/index.html index 5c4a5c7..24664d5 100644 --- a/index.html +++ b/index.html @@ -273,7 +273,7 @@

Static methods

Changes

diff --git a/package.json b/package.json new file mode 100644 index 0000000..6c00010 --- /dev/null +++ b/package.json @@ -0,0 +1,41 @@ +{ + "name": "abigimage", + "version": "1.3.1", + "author": "Maksim Krylosov (http://aeqdev.com/)", + "license": "MPL-2.0", + "homepage": "http://aeqdev.com/tools/js/abigimage/", + "bugs": "https://github.com/Aequiternus/ABigImage/issues", + "description": "ABigImage - view big versions of images. Fit mobile devices. Uses CSS3 transform and transition for smooth touch sliding. Touch slide left or right opens next or previous image, touch slide up or down closes image. Clicking image opens next one, clicking left side opens previous, clicking right side closes image. Hotkeys for next, previous and close buttons. Closing after viewing of all images. Preloading of next and previous images. Multi-touch zoom. Uses link's `href` or `data-href` attribute for large images. Fully customizable styles. Customizable bottom area. Customizable `onopen` event.", + "keywords": [ + "jquery-plugin", + "ecosystem:jquery", + "image", + "picture", + "photo", + "view", + "viewer", + "big", + "large", + "enlarge", + "lightbox", + "popup", + "mobile", + "desktop", + "slideshow", + "touch", + "slide", + "keyboard", + "hotkey", + "responsive", + "html5", + "jquery" + ], + "main": "abigimage.jquery.js", + "repository": { + "type": "git", + "url": "https://github.com/Aequiternus/ABigImage.git" + }, + "dependencies": { + "jquery": ">=1.9" + } +}