69fcfe4596
feat(draggable): allow ignore_dragging config option to be a function
2014-03-26 12:38:06 +01:00
f1ad03cc36
chore: update dist
2014-03-13 00:11:55 +01:00
03910df967
feat(draggable): option to not remove helper on drag stop
2014-03-13 00:11:29 +01:00
b84f364d4a
Release v0.5.1
2014-03-05 19:02:30 +01:00
dc09f191d8
feat(gridster): destroy element's data and optionally remove from DOM
2014-03-05 18:26:45 +01:00
04868a384d
feat(draggable): keep container position prop if different than static
2014-03-05 17:47:39 +01:00
6f22217f05
feat(coords): allow both (left/x1) and (top/y1) attr keys
2014-03-05 17:36:11 +01:00
fdeee4f636
feat(coords): add destroy method
2014-03-05 17:33:04 +01:00
720d487e39
feat(collision): overlapping region as a config option
2014-03-05 17:29:45 +01:00
967984f16b
Release v0.5.0
2014-02-14 13:13:39 +01:00
073fdc40e0
feat(draggable): Add toggle draggable method.
2014-02-14 13:09:03 +01:00
e21f63a05a
fix(resize.stop): Call resize.stop at the latest possible moment
...
Previously the resize.stop callback was being called before the widget
had reached the end size that Gridster would make it (the widget grows
to match the placeholder size after releasing the drag)
This change pushes the resize.stop callback to the last possible moment
where the size of the widget the callback receives is more likely to be
correct.
Signed-off-by: ciaranj <ciaranj@gmail.com>
Conflicts:
src/jquery.gridster.js
2014-02-14 13:09:03 +01:00
835c2df844
fix(autogrow): refining autogrow_cols behavior and grid width issues
2014-02-14 13:09:02 +01:00
9796c44dc6
Release v0.4.4
2014-02-13 11:27:48 +01:00
7ca8deec85
feat(resize): add start/stop/resize event triggers
2014-02-13 11:26:56 +01:00
6121eb6888
Release v0.4.3
2014-02-11 01:05:24 +01:00
f8b04f298e
fix(generated-styles): cleaning cached serializations properly
2014-02-11 01:04:32 +01:00
e76eed7ac4
Release v0.4.2
2014-02-07 18:28:23 +01:00
4774597834
fix: recalculate grid width when adding widgets
2014-02-07 18:27:07 +01:00
7c1453c6be
chore: fix mistakes in changelog
2014-02-07 15:15:30 +01:00
6eef93cc16
Release v0.4.1
2014-02-07 15:10:48 +01:00
5672edb05e
fix: add resize.min_size option to default config object
2014-02-07 15:09:55 +01:00
46e0abe346
Release v0.4.0
2014-02-07 14:48:53 +01:00
1aee438bec
chore: Updated node package dependencies to work on clean system.
...
qunit->qunitjs and jquery 2.0 isn't listed in npm repository so
replaced it with the git location.
2014-02-07 14:48:53 +01:00
7ed79e5672
fix(gridster): leaking options with multiple Gridster instances
...
`defaults` was being overwritten.
See [jQuery documentation](http://api.jquery.com/jQuery.extend/ ):
> Keep in mind that the target object (first argument) will be modified, and will also be returned from $.extend().
2014-02-07 14:48:53 +01:00
429c776aa9
feat(resize): add option to set min_size of a widget
2014-02-07 14:48:53 +01:00
e9d8d8d6e2
fix(readme): link title jsfiddle -> jsbin, edit 5) of process steps
2014-02-07 14:48:53 +01:00
6f20723039
fix(licenses): add required copyright message for underscore
...
Add the copyright message for the code taken from underscore as required
by the MIT license.
2014-02-07 14:48:53 +01:00
e9dc513457
fix(gridster): resize.axes default option only 'both'
...
If passing resize.axes option it will be
what is defined and not ['x','y','both'].
2014-02-07 14:48:53 +01:00
04cb32f6f3
Release v0.3.0
2014-02-07 14:48:53 +01:00
b65a802964
feat(gridster): increase grid width when dragging or resizing
2014-02-07 14:48:52 +01:00
8fa3ad258f
feat(draggable): method to set drag limits dynamically
2014-02-07 14:48:52 +01:00
3e426c9301
chore: rename calculate_positions to calculate_dimensions
2014-02-07 14:48:52 +01:00
b0b4464a5c
feat(draggable): support horizontal scrolling while dragging
2014-02-07 14:48:52 +01:00
381a881501
chore: use $ instead of jQuery inside gridster
2014-02-07 14:48:52 +01:00
b6ec35252d
chore: add bitdeli badge to readme
2013-12-10 17:26:45 +01:00
26031042aa
docs: add guidelines for contributing
2013-10-29 23:59:00 +01:00
bc94351205
Release v0.2.1
2013-10-28 23:57:52 +01:00
d4ec7140f7
feat(resize): Add start/stop/resize callbacks
2013-10-28 23:52:17 +01:00
277d8a7753
Release v0.2.0
2013-10-26 19:54:50 +02:00
21f53a7bd4
chore(readme): update readme
2013-10-26 19:52:10 +02:00
07ebe67540
chore(docs): update ducksboard logo URL
2013-10-26 19:52:10 +02:00
e19240532d
feat(gridster): drag-and-drop widget resizing
2013-10-26 19:52:10 +02:00
65d93a44db
chore(grunt): add css files to grunt watch command
2013-10-26 19:52:10 +02:00
8e58cf8a44
style: some whitespaces, line-breaks...
2013-10-26 19:52:10 +02:00
d0ca62826a
chore(draggable): jQuery adapter returns Draggable instance
...
Draggable instance instead of a jQuery collection.
Why? Becomes a mess if Draggable is instantiated multiple times from
the same HTML element.
BREAKING CHANGES: If you was accessing to Draggable instances through
.data('drag') you should remove the `data` getter. Since now the instance
is returned directly.
2013-10-26 19:52:10 +02:00
4d9b2a84f1
feat(draggable): new config option to move or not the dragged element
2013-10-26 19:52:10 +02:00
0f95624925
feat(draggable): CSS selectors support in ignore_dragging
config opt
2013-10-26 19:52:10 +02:00
055cc0e4f6
feat(draggable): pass previous position to the drag callback
2013-10-26 19:52:10 +02:00
91ca65721c
feat(draggable): Don't start new drag if previous one hasn't stopped
...
Moving 4e6159fb by @atesgoral into draggable.js
2013-10-26 19:52:10 +02:00