Skip to content

Commit

Permalink
chore(release): v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbin committed Aug 15, 2018
1 parent 3d9d1e5 commit d4f4099
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion dist/jquery.magnify.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/jquery.magnify.css.map

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions dist/jquery.magnify.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* | | | | _ | \_/ | |\ |_| |_| | | |
* |__| |__|__| |__|\____/|_|__| \__|_____|__| |__|
*
* jquery.magnify - v1.1.0
* jquery.magnify - v1.2.0
* A jQuery plugin to view images just like in windows
* https://github.com/nzbin/magnify#readme
*
Expand Down Expand Up @@ -63,7 +63,7 @@ function throttle(fn, delay) {
timer = setTimeout(function () {
fn.apply(context, args);
}, delay);
};
}

}

Expand All @@ -79,11 +79,11 @@ function preloadImg(src, success, error) {

img.onload = function () {
success(img);
};
}

img.onerror = function () {
error(img);
};
}

img.src = src;

Expand Down Expand Up @@ -1334,7 +1334,7 @@ var draggable = function (modal, dragHandle, dragCancel) {
$D.on(TOUCH_MOVE_EVENT + EVENT_NS, dragMove)
.on(TOUCH_END_EVENT + EVENT_NS, dragEnd);

};
}

var dragMove = function (e) {

Expand All @@ -1357,7 +1357,7 @@ var draggable = function (modal, dragHandle, dragCancel) {

}

};
}

var dragEnd = function (e) {

Expand All @@ -1366,11 +1366,11 @@ var draggable = function (modal, dragHandle, dragCancel) {

isDragging = false;

};
}

$(dragHandle).on(TOUCH_START_EVENT + EVENT_NS, dragStart);

};
}

// Add to Magnify Prototype
$.extend(Magnify.prototype, {
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.magnify.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/jquery.magnify.min.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/jquery.magnify.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/css/jquery.magnify.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions docs/js/jquery.magnify.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* | | | | _ | \_/ | |\ |_| |_| | | |
* |__| |__|__| |__|\____/|_|__| \__|_____|__| |__|
*
* jquery.magnify - v1.1.0
* jquery.magnify - v1.2.0
* A jQuery plugin to view images just like in windows
* https://github.com/nzbin/magnify#readme
*
Expand Down Expand Up @@ -63,7 +63,7 @@ function throttle(fn, delay) {
timer = setTimeout(function () {
fn.apply(context, args);
}, delay);
};
}

}

Expand All @@ -79,11 +79,11 @@ function preloadImg(src, success, error) {

img.onload = function () {
success(img);
};
}

img.onerror = function () {
error(img);
};
}

img.src = src;

Expand Down Expand Up @@ -1334,7 +1334,7 @@ var draggable = function (modal, dragHandle, dragCancel) {
$D.on(TOUCH_MOVE_EVENT + EVENT_NS, dragMove)
.on(TOUCH_END_EVENT + EVENT_NS, dragEnd);

};
}

var dragMove = function (e) {

Expand All @@ -1357,7 +1357,7 @@ var draggable = function (modal, dragHandle, dragCancel) {

}

};
}

var dragEnd = function (e) {

Expand All @@ -1366,11 +1366,11 @@ var draggable = function (modal, dragHandle, dragCancel) {

isDragging = false;

};
}

$(dragHandle).on(TOUCH_START_EVENT + EVENT_NS, dragStart);

};
}

// Add to Magnify Prototype
$.extend(Magnify.prototype, {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery.magnify",
"version": "1.1.0",
"version": "1.2.0",
"description": "A jQuery plugin to view images just like in Windows",
"main": "magnify.js",
"homepage": "https://github.com/nzbin/magnify#readme",
Expand Down
2 changes: 1 addition & 1 deletion src/js/intro.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* | | | | _ | \_/ | |\ |_| |_| | | |
* |__| |__|__| |__|\____/|_|__| \__|_____|__| |__|
*
* jquery.magnify - v1.1.0
* jquery.magnify - v1.2.0
* A jQuery plugin to view images just like in windows
* https://github.com/nzbin/magnify#readme
*
Expand Down
2 changes: 1 addition & 1 deletion src/sass/magnify.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* | | | | _ | \_/ | |\ |_| |_| | | |
* |__| |__|__| |__|\____/|_|__| \__|_____|__| |__|
*
* jquery.magnify - v1.1.0
* jquery.magnify - v1.2.0
* A jQuery plugin to view images just like in windows
* https://github.com/nzbin/magnify#readme
*
Expand Down

0 comments on commit d4f4099

Please sign in to comment.