Skip to content

Commit

Permalink
chore(*): version bump 1.0.9
Browse files Browse the repository at this point in the history
  - fix(README): Closes #108 and [cleanup](7c06a61)
  - fix(*): Closes #102 - use $.map over native .map method for IE8
  - fix(*): Closes #137 - drag/drop should work even when compile-time debugging is disabled
  - fix(*): Closes #130 - avoid setting display: block on dropped cell
  - fix(*): Closes #102 - passing global jQuery reference in case it is renamed with jQuery.noConflict()
  - fix(*): Closes #143 - introduce deepCopy option to support deep copy on draggable/droppable
  - perf(*): Undo #55 because some callbacks are performance intensive, especially, onDrag, to run a digest loop for. Call $scope.$apply() within the callback if needed
  - fix(*): Closes #144 - default or custom confirmation before drop
  • Loading branch information
codef0rmerz committed Jan 5, 2015
1 parent 4b1cfb6 commit 87fffa1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

Implementing jQueryUI Drag and Drop functionality in AngularJS is easier than ever which is a wrapper for jQueryUI draggable/droppable components.


###v1.0.9 - breaking change
1. Draggable and Droppable will not be [deep copied](https://egghead.io/lessons/angularjs-angular-copy-for-deep-copy) by default unlike previous versions. Use `deepCopy` option if prototypical inheritance is not required.
2. Callbacks will not be executed forcefully within the context of scope which requires an extra digest loop for each event (start, stop, over, out, etc), especially drag that fires many times and running a digest loop is performance intensive in such scenario. Call `scope.$apply()` within callback, if needed.


##How to Use

* `bower install angular-dragdrop` (or `sudo bower install angular-dragdrop --allow-root`)
Expand Down Expand Up @@ -67,10 +73,6 @@ angular.module('myApp', ['ngDragDrop'])
Demo is [here](http://codef0rmer.github.io/angular-dragdrop/#/)


###v1.0.9 - breaking change
Draggable and Droppable will not be deep copied by default unlike previous versions. Use deepCopy option, if needed.


###v1.0.5 - breaking change
Do not pass evaluated expressions in callbacks. For example,
####Before:
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-dragdrop",
"version": "1.0.8",
"version": "1.0.9",
"description": "This directive allows you to use jQuery UI's draggable and droppable plugins with AngularJS.",
"author": "https://github.com/codef0rmer/angular-dragdrop/contributors",
"license": "MIT",
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": "angular-dragdrop",
"version": "1.0.5",
"version": "1.0.9",
"description": "This directive allows you to use jQuery UI's draggable and droppable plugins with AngularJS.",
"author": "https://github.com/codef0rmer/angular-dragdrop/contributors",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/angular-dragdrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Implementing Drag and Drop functionality in AngularJS is easier than ever.
* Demo: http://codef0rmer.github.com/angular-dragdrop/
*
* @version 1.0.8
* @version 1.0.9
*
* (c) 2013 Amit Gharat a.k.a codef0rmer <[email protected]> - amitgharat.wordpress.com
*/
Expand Down
4 changes: 2 additions & 2 deletions src/angular-dragdrop.min.js

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

0 comments on commit 87fffa1

Please sign in to comment.