From a633f4263a7c0f6a6933b9efc0ba50dfec4f768e Mon Sep 17 00:00:00 2001 From: zero13cool Date: Sat, 30 Aug 2014 22:42:02 +0400 Subject: [PATCH 1/7] add LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..80e5303 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Vladimir Savin + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From 16a762afc4f4317b8ac1d3c4cb73f12fb99ecee4 Mon Sep 17 00:00:00 2001 From: zero13cool Date: Sat, 30 Aug 2014 22:50:11 +0400 Subject: [PATCH 2/7] add jquery.json manifest --- loader.jquery.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 loader.jquery.json diff --git a/loader.jquery.json b/loader.jquery.json new file mode 100644 index 0000000..e099422 --- /dev/null +++ b/loader.jquery.json @@ -0,0 +1,35 @@ +{ + "name": "loader", + "title": "jQuery Loader", + "description": "Small plugin for create animated loader over target element.", + "version": "0.0.9", + "homepage": "http://zerc.github.io/jquery-loader/", + "demo": "http://zerc.github.io/jquery-loader/", + "author": { + "name": "Savin Vladimir", + "email": "zero13cool@yandex.ru" + }, + "repository": { + "type": "git", + "url": "https://github.com/zerc/jquery-loader.git" + }, + "bugs": "https://github.com/zerc/jquery-loader/issues", + "docs": "https://github.com/zerc/jquery-loader", + "download": "https://github.com/zerc/jquery-loader/archive/master.zip", + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/zerc/django-light-draft/blob/master/LICENSE" + } + ], + "dependencies": { + "jquery": ">=1.6.4" + }, + "keywords": [ + "jquery", + "ajax", + "gif", + "loader", + "overflow" + ] +} From 3ac46537c26e9774a9ed84acf96287ee2aba6a1a Mon Sep 17 00:00:00 2001 From: zero13cool Date: Sat, 30 Aug 2014 22:50:42 +0400 Subject: [PATCH 3/7] update manifest --- loader.jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader.jquery.json b/loader.jquery.json index e099422..60f203f 100644 --- a/loader.jquery.json +++ b/loader.jquery.json @@ -2,7 +2,7 @@ "name": "loader", "title": "jQuery Loader", "description": "Small plugin for create animated loader over target element.", - "version": "0.0.9", + "version": "0.9.0", "homepage": "http://zerc.github.io/jquery-loader/", "demo": "http://zerc.github.io/jquery-loader/", "author": { From 8f3909917019540c0e5e187c30ac4439c3d448e5 Mon Sep 17 00:00:00 2001 From: zero13cool Date: Sat, 30 Aug 2014 23:03:32 +0400 Subject: [PATCH 4/7] fix license url in manifest --- loader.jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader.jquery.json b/loader.jquery.json index 60f203f..9a19a58 100644 --- a/loader.jquery.json +++ b/loader.jquery.json @@ -19,7 +19,7 @@ "licenses": [ { "type": "MIT", - "url": "https://github.com/zerc/django-light-draft/blob/master/LICENSE" + "url": "https://github.com/zerc/jquery-loader/blob/master/LICENSE" } ], "dependencies": { From f5e76a0e8960e0b8a0184440ee4cd51492ebaa83 Mon Sep 17 00:00:00 2001 From: zero13cool Date: Sat, 30 Aug 2014 23:13:12 +0400 Subject: [PATCH 5/7] rename plugin --- README.md | 8 ++++---- index.html | 4 ++-- js/{jquery.loader.js => jquery.simpleLoader.js} | 0 js/{jquery.loader.min.js => jquery.simpleLoader.min.js} | 0 4 files changed, 6 insertions(+), 6 deletions(-) rename js/{jquery.loader.js => jquery.simpleLoader.js} (100%) rename js/{jquery.loader.min.js => jquery.simpleLoader.min.js} (100%) diff --git a/README.md b/README.md index 8f76588..f6b9a07 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -jQuery.Loader +jquery.simpleLoader =============== Small jQuery plugin for do animated gif loaders with opacity overflow over html elements. @@ -7,11 +7,11 @@ Small jQuery plugin for do animated gif loaders with opacity overflow over html ## Setup -Put `jquery.loader.min.js` into your js folder. +Put `jquery.simpleLoader.min.js` into your js folder. Include script tag after jquery: -`` +`` Include css from `loader.css' inside your css file or just put @@ -21,7 +21,7 @@ Include css from `loader.css' inside your css file or just put ## Usage -Default you can use `$('.foo_div').Loader('show')` or `$('.foo_div').Loader('hide')` methods for show/hide loader over selected element. +Default you can use `$('.foo_div').Loader('show')` or `$('.foo_div').Loader('hide')` methods for show/hide loader over selected element. Also you can overwrite default css for loader elements. Example: diff --git a/index.html b/index.html index fe69102..1bf1b73 100644 --- a/index.html +++ b/index.html @@ -3,13 +3,13 @@ - Jquery.Loader module - example page + jQuery Loader module - example page - +
diff --git a/js/jquery.loader.js b/js/jquery.simpleLoader.js similarity index 100% rename from js/jquery.loader.js rename to js/jquery.simpleLoader.js diff --git a/js/jquery.loader.min.js b/js/jquery.simpleLoader.min.js similarity index 100% rename from js/jquery.loader.min.js rename to js/jquery.simpleLoader.min.js From b7c3c4b14a32ca34cb1f3a1d3827d6dc5567a419 Mon Sep 17 00:00:00 2001 From: zero13cool Date: Sat, 30 Aug 2014 23:14:41 +0400 Subject: [PATCH 6/7] update manifest --- loader.jquery.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/loader.jquery.json b/loader.jquery.json index 9a19a58..fdfe71c 100644 --- a/loader.jquery.json +++ b/loader.jquery.json @@ -1,8 +1,8 @@ { - "name": "loader", - "title": "jQuery Loader", + "name": "simpleLoader", + "title": "jQuery Simple Loader", "description": "Small plugin for create animated loader over target element.", - "version": "0.9.0", + "version": "0.9.1", "homepage": "http://zerc.github.io/jquery-loader/", "demo": "http://zerc.github.io/jquery-loader/", "author": { From 377cb87a1a77acb08a0c58580a80e8ca4ac13bb6 Mon Sep 17 00:00:00 2001 From: zero13cool Date: Sat, 30 Aug 2014 23:15:14 +0400 Subject: [PATCH 7/7] rename manifest --- loader.jquery.json => simpleLoader.jquery.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename loader.jquery.json => simpleLoader.jquery.json (100%) diff --git a/loader.jquery.json b/simpleLoader.jquery.json similarity index 100% rename from loader.jquery.json rename to simpleLoader.jquery.json