Skip to content

Commit

Permalink
Bumping version to 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Sep 23, 2014
1 parent d68e854 commit 490aeb8
Show file tree
Hide file tree
Showing 22 changed files with 70 additions and 70 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jquery.fancytree",
"description": "Fancytree is a JavaScript tree view plugin for jQuery with support for persistence, keyboard, checkboxes, drag'n'drop, and lazy loading.",
"version": "2.4.1-0",
"version": "2.4.1",
"main": [
"dist/jquery.fancytree-all.min.js"
],
Expand Down
48 changes: 24 additions & 24 deletions dist/jquery.fancytree-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

/** Core Fancytree module.
Expand Down Expand Up @@ -844,7 +844,7 @@ FancytreeNode.prototype = /** @lends FancytreeNode# */{
}
return true;
}
return ( this.children && this.children.length );
return !!( this.children && this.children.length );
},
/** Return true if node has keyboard focus.
* @returns {boolean}
Expand Down Expand Up @@ -3905,7 +3905,7 @@ $.extend($.ui.fancytree,
/** @lends Fancytree_Static# */
{
/** @type {string} */
version: "2.4.0", // Set to semver by 'grunt release'
version: "2.4.1", // Set to semver by 'grunt release'
/** @type {string} */
buildType: "production", // Set to 'production' by 'grunt build'
/** @type {int} */
Expand Down Expand Up @@ -4204,8 +4204,8 @@ $.extend($.ui.fancytree,
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

// To keep the global namespace clean, we wrap everything in a closure
Expand Down Expand Up @@ -4380,8 +4380,8 @@ $.ui.fancytree.registerExtension({
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down Expand Up @@ -4826,8 +4826,8 @@ $.ui.fancytree.registerExtension({
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down Expand Up @@ -5370,8 +5370,8 @@ $.ui.fancytree.registerExtension({
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down Expand Up @@ -5716,8 +5716,8 @@ $.ui.fancytree.registerExtension({
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down Expand Up @@ -5878,8 +5878,8 @@ $.ui.fancytree.registerExtension({
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down Expand Up @@ -6011,8 +6011,8 @@ $.ui.fancytree.registerExtension({
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down Expand Up @@ -6213,8 +6213,8 @@ $.ui.fancytree.registerExtension({
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down Expand Up @@ -6545,8 +6545,8 @@ $.ui.fancytree.registerExtension({
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down Expand Up @@ -6902,8 +6902,8 @@ $.ui.fancytree.registerExtension({
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.fancytree-all.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/jquery.fancytree.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

/** Core Fancytree module.
Expand Down Expand Up @@ -844,7 +844,7 @@ FancytreeNode.prototype = /** @lends FancytreeNode# */{
}
return true;
}
return ( this.children && this.children.length );
return !!( this.children && this.children.length );
},
/** Return true if node has keyboard focus.
* @returns {boolean}
Expand Down Expand Up @@ -3905,7 +3905,7 @@ $.extend($.ui.fancytree,
/** @lends Fancytree_Static# */
{
/** @type {string} */
version: "2.4.0", // Set to semver by 'grunt release'
version: "2.4.1", // Set to semver by 'grunt release'
/** @type {string} */
buildType: "production", // Set to 'production' by 'grunt build'
/** @type {int} */
Expand Down
8 changes: 4 additions & 4 deletions dist/jquery.fancytree.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.childcounter.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

// To keep the global namespace clean, we wrap everything in a closure
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.clones.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.columnview.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.dnd.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.glyph.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.gridnav.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
8 changes: 4 additions & 4 deletions dist/src/jquery.fancytree.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

/** Core Fancytree module.
Expand Down Expand Up @@ -844,7 +844,7 @@ FancytreeNode.prototype = /** @lends FancytreeNode# */{
}
return true;
}
return ( this.children && this.children.length );
return !!( this.children && this.children.length );
},
/** Return true if node has keyboard focus.
* @returns {boolean}
Expand Down Expand Up @@ -3905,7 +3905,7 @@ $.extend($.ui.fancytree,
/** @lends Fancytree_Static# */
{
/** @type {string} */
version: "2.4.0", // Set to semver by 'grunt release'
version: "2.4.1", // Set to semver by 'grunt release'
/** @type {string} */
buildType: "production", // Set to 'production' by 'grunt build'
/** @type {int} */
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.persist.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.table.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.themeroller.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
4 changes: 2 additions & 2 deletions dist/src/jquery.fancytree.wide.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
* Released under the MIT license
* https://github.com/mar10/fancytree/wiki/LicenseInfo
*
* @version 2.4.0
* @date 2014-09-21T13:14
* @version 2.4.1
* @date 2014-09-23T19:33
*/

;(function($, window, document, undefined) {
Expand Down
2 changes: 1 addition & 1 deletion fancytree.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fancytree",
"version": "2.4.1-0",
"version": "2.4.1",
"title": "Fancytree",
"description": "Fancytree is a JavaScript dynamic tree view plugin for jQuery with support for persistence, keyboard, checkboxes, drag'n'drop, and lazy loading.",
"homepage": "https://github.com/mar10/fancytree",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jquery.fancytree",
"title": "jQuery Fancytree Plugin",
"description": "Fancytree is a JavaScript dynamic tree view plugin for jQuery with support for persistence, keyboard, checkboxes, drag'n'drop, and lazy loading.",
"version": "2.4.1-0",
"version": "2.4.1",
"homepage": "https://github.com/mar10/fancytree",
"author": {
"name": "Martin Wendt",
Expand Down

0 comments on commit 490aeb8

Please sign in to comment.