Commit graph

123 commits

Author SHA1 Message Date
Pavel Reznikov
90424c0d8a Merge pull request #264 from kdietrich/make-widget
Adding make_widget functionality
2016-02-10 23:15:48 -08:00
Pavel Reznikov
d11eaba9b8 placeholder_text option 2016-02-10 19:14:44 -08:00
Pavel Reznikov
928d9d3679 Merge pull request #319 from rharriso/master
allow default sass values to be overridden
2016-02-10 19:01:20 -08:00
Pavel Reznikov
deff21d822 Merge pull request #162 from martynsmall/master
Fix resize/move issue in one column mode
2016-02-10 18:54:26 -08:00
Pavel Reznikov
6017f346f8 Merge pull request #200 from derekm/fix-out-of-order-events
fix ordering of draggable and resizable event callbacks
2016-02-10 18:52:37 -08:00
Pavel Reznikov
4dae65aa46 merge PR #283 2016-02-10 18:29:49 -08:00
Ross Harrison
c679b26d02 allow default sass value to be preset 2016-02-10 11:13:47 -05:00
Ross Harrison
15a121e7d6 allow default sass values to be preset 2016-02-10 11:13:19 -05:00
Pavel Reznikov
b32b3f251f fix #276 2016-02-08 22:58:10 -08:00
Pavel Reznikov
64aa4734cc copy 2016-02-08 22:43:35 -08:00
Pavel Reznikov
7c7fd5ae0a Merge pull request #271 from mmrose/master
Adding enable and disable events
2016-02-08 22:39:55 -08:00
Pavel Reznikov
9237ae7fb7 Merge pull request #275 from zspitzer/master
toggle ui-draggable-handle class with draggable
2016-02-08 22:38:54 -08:00
Pavel Reznikov
48e96cd746 Merge pull request #245 from boreal-is/master
Fix for #63
2016-02-08 22:35:41 -08:00
Pavel Reznikov
7c8c08e101 Merge pull request #309 from andrewr88/master
Fixes for Lodash v4.0 breaking changes
2016-02-08 22:33:55 -08:00
Derek Moore
1fe90ee79b trigger resizestart on items for when nested grids are resized 2016-01-28 15:21:18 -06:00
Derek Moore
61a129e77c add event_stop_propagate to change event on gridstack objects 2016-01-28 14:17:21 -06:00
Florian Heinze
9c644eef98 [BUGFIX] offset problems for dragging and scaling with a lot of columns
When using a a lot of columns, e.g. more than 40
then the dashed box showing the next placement would
behave strangely compared to the box I am currently
dragging. This behavior increases while dragging
the box to the right side.

When scaling a box on the right side, the box would
jump one column to the left, which would then move around
all the boxes that I have already placed.

This behavior seems to be related to a rounding problem.
2016-01-25 14:08:18 +01:00
Andy Robbins
bce1eeaf06 fix calls for lodash v4.0 2016-01-15 13:46:23 -05:00
Jerome Louis
9bba3fbb18 generated CSS files should only be in dist folder 2015-11-18 16:48:27 +01:00
Zac Spitzer
912662bbbb toggle ui-draggable-handle class with draggable
On touch devices, it's not possible to scroll a page by dragging on an item even when draggable is
disabled due to the **ui-draggable-handle** class which is added to the **grid-stack-item-content**

JQuery-UI Draggable doesn't remove this class when it's disabled, so it prevents touch scrolling the page on the item

```
<div class="grid-stack-item-content ui-draggable-handle">

.ui-draggable-handle {
    -ms-touch-action: none;
    touch-action: none;
}
```
2015-11-06 13:48:11 +11:00
Martin Mrose
816071a077 Triggering enable and disable events on gridstack container 2015-11-03 00:14:57 +01:00
Kevin Dietrich
bee6ff6e31 API make_widget functionality 2015-10-26 12:31:06 +01:00
Chaoyu
3be2105a93 try load lodash, otherwise use global _ 2015-10-09 15:22:00 -07:00
Chaoyu
b7c7b3b8f3 fix 2015-10-09 15:10:22 -07:00
Chaoyu
5472f95252 common js suport 2015-10-09 14:46:12 -07:00
cvillemure
c2b1dee5fa Merge pull request #2 from troolee/master
Update from troolee
2015-10-08 15:06:23 -04:00
cvillemure
77159bfbe1 Fix for #63
Fix IE9 SE handle for #63
2015-10-08 14:55:24 -04:00
Pavel Reznikov
b00114d5bc fix handle option 2015-09-21 20:13:05 -07:00
Pavel Reznikov
847a54c492 Make sure not to include placeholders when calling prepare element. 2015-09-09 18:21:36 -07:00
Pavel Reznikov
79f509c6e6 add handle_class option 2015-09-09 18:20:06 -07:00
Derek Moore
798c5c429f broadcast resizestop to nested grids "all the way down" 2015-08-12 13:58:49 -05:00
Derek Moore
1b3a0cbf89 format code to match prevalent coding style 2015-08-12 13:45:37 -05:00
Derek Moore
8848249035 broadcast resizestop events to nested grids 2015-08-12 13:45:37 -05:00
Derek Moore
9442e3cd7e stop event propagation at the grid instead of at grid items 2015-08-12 10:20:39 -05:00
Derek Moore
69d2df188d stop propagation of events so nested grids don't affect parents 2015-08-07 16:36:59 -05:00
Derek Moore
4a80e41811 fix ordering of draggable and resizable event callbacks 2015-08-06 17:55:28 -05:00
martynsmall
5e06c68e98 Merged changes 2015-08-06 15:35:07 +01:00
cvillemure
c35042dbc4 Add a set_static method for the grid + add a static class to the container
The set_static method allow to toggle the static mode on the fly.
The 'grid-stack-static' class allow the user to apply custom CSS style
on the widgets when in static mode.
2015-07-23 15:43:44 -04:00
Pavel Reznikov
7f0d622e71 Merge pull request #190 from boreal-is/master
Trigger change event for add/remove
2015-07-22 16:31:15 -07:00
cvillemure
187e13a244 Trigger change event for add/remove
Trigger change event for add_widget / remove_widget methods and refactor
the trigger into a method for uniformity
2015-07-22 15:21:51 -04:00
Zac Spitzer
c35a3cad1d Add Destroy method
- added remove_stylesheet
- changed on_resize_hander to allow unbinding
- added destroy method
2015-07-22 11:33:41 +10:00
cvillemure
5b73939bc4 Add a API to set minWidth and minHeight to a node 2015-07-20 13:46:51 -04:00
Pavel Reznikov
0a58260563 add static_grid option 2015-07-16 18:49:28 -07:00
Pavel Reznikov
2349443938 fix closure comiler warnings 2015-06-24 18:57:25 -07:00
Pavel Reznikov
6ffdf307f8 file header version 2015-06-24 18:48:44 -07:00
Pavel Reznikov
14f319e9dc fix closure linter warnings 2015-06-24 18:48:07 -07:00
Pavel Reznikov
b5cdcb2496 extra CSS 2015-06-19 22:02:42 -07:00
Pavel Reznikov
899fee3330 do not fire onchange event with empty array 2015-06-18 19:48:23 -07:00
Pavel Reznikov
b6fec29756 attach placeholder just when it needed 2015-06-18 19:30:48 -07:00
Pavel Reznikov
14a9dba190 compile source CSS from SCSS 2015-06-18 18:33:26 -07:00