Skip to content

Commit 9796c44

Browse files
committed
Release v0.4.4
1 parent 7ca8dee commit 9796c44

File tree

8 files changed

+29
-9
lines changed

8 files changed

+29
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<a name="v0.4.4"></a>
2+
### v0.4.4 (2014-02-13)
3+
4+
5+
#### Features
6+
7+
* **resize:** add start/stop/resize event triggers ([7ca8deec](http://github.com/ducksboard/gridster.js/commit/7ca8deec8559d950097a6dc351cb0c6fcef3458d))
8+
19
<a name="v0.4.3"></a>
210
### v0.4.3 (2014-02-11)
311

dist/jquery.gridster.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! gridster.js - v0.4.3 - 2014-02-11
1+
/*! gridster.js - v0.4.4 - 2014-02-13
22
* http://gridster.net/
33
* Copyright (c) 2014 ducksboard; Licensed MIT */
44

dist/jquery.gridster.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! gridster.js - v0.4.3 - 2014-02-11
1+
/*! gridster.js - v0.4.4 - 2014-02-13
22
* http://gridster.net/
33
* Copyright (c) 2014 ducksboard; Licensed MIT */
44

@@ -1907,6 +1907,8 @@
19071907
if (this.options.resize.start) {
19081908
this.options.resize.start.call(this, event, ui, this.$resized_widget);
19091909
}
1910+
1911+
this.$el.trigger('gridster:resizestart');
19101912
};
19111913

19121914

@@ -1943,6 +1945,8 @@
19431945
if (this.options.resize.stop) {
19441946
this.options.resize.stop.call(this, event, ui, this.$resized_widget);
19451947
}
1948+
1949+
this.$el.trigger('gridster:resizestop');
19461950
};
19471951

19481952
/**
@@ -2030,6 +2034,8 @@
20302034
this.options.resize.resize.call(this, event, ui, this.$resized_widget);
20312035
}
20322036

2037+
this.$el.trigger('gridster:resize');
2038+
20332039
this.resize_last_sizex = size_x;
20342040
this.resize_last_sizey = size_y;
20352041
};

dist/jquery.gridster.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.gridster.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.gridster.with-extras.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! gridster.js - v0.4.3 - 2014-02-11
1+
/*! gridster.js - v0.4.4 - 2014-02-13
22
* http://gridster.net/
33
* Copyright (c) 2014 ducksboard; Licensed MIT */
44

@@ -1907,6 +1907,8 @@
19071907
if (this.options.resize.start) {
19081908
this.options.resize.start.call(this, event, ui, this.$resized_widget);
19091909
}
1910+
1911+
this.$el.trigger('gridster:resizestart');
19101912
};
19111913

19121914

@@ -1943,6 +1945,8 @@
19431945
if (this.options.resize.stop) {
19441946
this.options.resize.stop.call(this, event, ui, this.$resized_widget);
19451947
}
1948+
1949+
this.$el.trigger('gridster:resizestop');
19461950
};
19471951

19481952
/**
@@ -2030,6 +2034,8 @@
20302034
this.options.resize.resize.call(this, event, ui, this.$resized_widget);
20312035
}
20322036

2037+
this.$el.trigger('gridster:resize');
2038+
20332039
this.resize_last_sizex = size_x;
20342040
this.resize_last_sizey = size_y;
20352041
};

dist/jquery.gridster.with-extras.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gridster",
33
"title": "gridster.js",
44
"description": "a drag-and-drop multi-column jQuery grid plugin",
5-
"version": "0.4.3",
5+
"version": "0.4.4",
66
"homepage": "http://gridster.net/",
77
"author": {
88
"name": "ducksboard",

0 commit comments

Comments
 (0)