Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade HOT to ^5.0.2 #248

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ngHandsontable",
"dependencies": {
"angular": "~1.5.0",
"handsontable": "~0.28.4"
"handsontable": "^5.0.2"
},
"homepage": "https://github.com/handsontable/ngHandsontable",
"authors": [
Expand Down
42 changes: 21 additions & 21 deletions demo/build/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,123 +253,123 @@ require=(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof requ
module.exports = {
'intro': {
'simple-example': {
url: getUrl('nudumu/4'),
url: getUrl('nudumu/6'),
title: 'Simple example',
description: 'Simple example'
},
'full-featured-demo': {
url: getUrl('xezevi/3'),
url: getUrl('xezevi/4'),
title: 'Full featured demo',
description: 'Full featured demo'
}
},
'configuration': {
'configuration-by-object': {
url: getUrl('getazu/3'),
url: getUrl('getazu/4'),
title: 'By `settings` object',
description: 'Configuration by setting `settings` object'
},
'configuration-declarative-way': {
url: getUrl('jupeme/3'),
url: getUrl('jupeme/4'),
title: 'In declarative way',
description: 'Configuration in declarative way'
}
},
'columns': {
'add-remove-column-ng-repeat': {
url: getUrl('muluto/4'),
url: getUrl('muluto/5'),
title: 'Add/Remove (ng-repeat)',
description: 'Add/Remove columns using ng-repeat'
},
'add-remove-column-by-attr': {
url: getUrl('xayeru/3'),
url: getUrl('xayeru/4'),
title: 'Add/Remove (`columns` attribute)',
description: 'Add/Remove columns using `columns` attribute'
}
},
'binding': {
'data-binding': {
url: getUrl('lupile/4'),
url: getUrl('lupile/5'),
title: 'Data binding',
description: 'Data binding'
},
'settings-binding': {
url: getUrl('xaqasi/3'),
url: getUrl('xaqasi/4'),
title: 'Table settings binding',
description: 'Table settings binding'
}
},
'callbacks': {
'callbacks-by-object': {
url: getUrl('nayito/5', 'html,js,console,output'),
url: getUrl('nayito/7', 'html,js,console,output'),
title: 'By `settings` object',
description: 'Listening callbacks using `settings` object'
},
'callbacks-declarative-way': {
url: getUrl('pucale/4', 'html,js,console,output'),
url: getUrl('pucale/5', 'html,js,console,output'),
title: 'In declarative way',
description: 'Listening callbacks in declarative way'
}
},
'plugins': {
'copy-paste-context-menu': {
url: getUrl('zohoge/2'),
url: getUrl('zohoge/3'),
title: 'Enable copy/paste in context menu',
description: 'Enable copy/paste in context menu'
}
},
'pagination': {
'rows-pagination': {
url: getUrl('fohohenabo/1'),
url: getUrl('rorozo/1'),
title: 'Paginate rows',
description: 'Paginate rows'
},
'columns-pagination': {
url: getUrl('qudufogafu/1'),
url: getUrl('kolerig/1'),
title: 'Paginate columns',
description: 'Paginate columns'
},
},
'other': {
'access-to-instance': {
url: getUrl('fovoxu/4'),
url: getUrl('fovoxu/5'),
title: 'Access to Handsontable instance',
description: 'Access to Handsontable instance'
},
'custom-validator': {
url: getUrl('qoweju/3'),
url: getUrl('qoweju/4'),
title: 'Custom validator',
description: 'Custom validator'
},
'custom-renderer': {
url: getUrl('locome/2'),
url: getUrl('locome/3'),
title: 'Custom renderer',
description: 'Custom renderer'
},
},
'PRO': {
'collapsing-columns-with-nested-headers': {
url: getUrl('wilani/3'),
url: getUrl('wilani/4'),
title: 'Collapsing columns with nested headers',
description: 'Create a nested, hierarchical structure of headers with expandable and collapsible columns'
},
'filtering-simple': {
url: getUrl('fijida/3'),
url: getUrl('fijida/4'),
title: 'Data filtering (simple example)',
description: 'Display rows that meet your criteria and hide the rest'
},
'filtering-external-inputs': {
url: getUrl('rewefa/9'),
url: getUrl('rewefa/10'),
title: 'Data filtering (external inputs)',
description: 'Display rows that meet your criteria and hide the rest'
},
'hiding-columns': {
url: getUrl('wapufa/2'),
url: getUrl('wapufa/3'),
title: 'Hiding columns',
description: 'Hide specific columns and show the rest'
},
'hiding-rows': {
url: getUrl('roximi/3'),
url: getUrl('roximi/4'),
title: 'Hiding rows',
description: 'Hide specific rows and show the rest'
},
Expand Down
4 changes: 2 additions & 2 deletions dist/ngHandsontable.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Copyright 2015 Handsoncode sp. z o.o. <[email protected]>
* Licensed under the MIT license.
* https://github.com/handsontable/ngHandsontable
* Date: Wed Oct 26 2016 10:00:05 GMT+0200 (CEST)
* Date: Wed Sep 19 2018 14:13:33 GMT-0500 (CDT)
*/

if (document.all && !document.addEventListener) { // IE 8 and lower
Expand All @@ -22,7 +22,7 @@ angular.module('ngHandsontable', [
]);

Handsontable.hooks.add('afterContextMenuShow', function() {
Handsontable.eventManager.isHotTableEnv = false;
Handsontable.EventManager.isHotTableEnv = false;
});

(function() {
Expand Down
Loading