Skip to content

Commit

Permalink
release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
javadoug committed May 14, 2014
1 parent cad1fa4 commit 72c2034
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,8 @@ Called before draggable.stop event. The default is $.noop.
_(Coming soon)_

## Release History
_(Nothing yet)_
_0.1.0_ inital release
_0.1.1_ fix
https://github.com/javadoug/jquery.drag-multiple/issues/3
https://github.com/javadoug/jquery.drag-multiple/issues/2

10 changes: 5 additions & 5 deletions dist/jquery-ui.drag-multiple.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! Drag Multiple Plugin - v0.1.0 - 2013-09-17
/*! Drag Multiple Plugin - v0.1.1 - 2014-05-14
* https://github.com/javadoug/jquery.drag-multiple
* Copyright (c) 2013 Doug Ross; Licensed MIT */
* Copyright (c) 2014 Doug Ross; Licensed MIT */
/*globals jQuery */
(function ($) {

Expand Down Expand Up @@ -68,7 +68,7 @@
element = this;

// the draggable instance
instance = element.data('draggable');
instance = element.data('draggable') || element.data('ui-draggable');

// initialize state
instance.multiple = {};
Expand Down Expand Up @@ -104,7 +104,7 @@
var element, instance, options;

element = this;
instance = element.data('draggable');
instance = element.data('draggable') || element.data('ui-draggable');
options = instance.multiple.options;

if (options.dragCanceled) {
Expand Down Expand Up @@ -136,7 +136,7 @@
var element, instance, options;

element = this;
instance = element.data('draggable');
instance = element.data('draggable') || element.data('ui-draggable');
options = instance.multiple.options;

if (options.dragCanceled) {
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery-ui.drag-multiple.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 drag-multiple.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "drag-multiple",
"title": "Drag Multiple Plugin",
"description": "A jQuery UI plugin enabling the selection, drag and drop of multiple ui-draggable elements.",
"version": "0.1.0",
"version": "0.1.1",
"homepage": "https://github.com/javadoug/jquery.drag-multiple",
"author": {
"name": "Doug Ross",
Expand Down

0 comments on commit 72c2034

Please sign in to comment.