Skip to content

Commit

Permalink
0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
budnix committed Apr 8, 2016
1 parent a313427 commit cbf4ec1
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ module.exports = function (grunt) {
grunt.registerTask('default', ['build']);
grunt.registerTask('watch-demo-app', ['browserify:demoAppWatch']);
grunt.registerTask('build-demo-app', ['browserify:demoApp']);
grunt.registerTask('build-release', ['build', 'build-demo-app']);

grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-contrib-concat');
Expand Down
2 changes: 1 addition & 1 deletion demo/build/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ require=(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof requ
}
config.$inject = ['$sceDelegateProvider', '$httpProvider', '$stateProvider', '$compileProvider', '$urlRouterProvider', 'demoMapProvider'];

app.constant('version', 'v0.9.0');
app.constant('version', 'v0.10.0');
app.config(config);

angular.element(document).ready(function() {
Expand Down
9 changes: 6 additions & 3 deletions dist/ngHandsontable.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/**
* ngHandsontable 0.9.0
* ngHandsontable 0.10.0
*
* Copyright 2012-2015 Marcin Warpechowski
* Copyright 2015 Handsoncode sp. z o.o. <[email protected]>
* Licensed under the MIT license.
* https://github.com/handsontable/ngHandsontable
* Date: Wed Apr 06 2016 14:44:50 GMT-0400 (EDT)
* Date: Fri Apr 08 2016 16:20:06 GMT+0200 (CEST)
*/

if (document.all && !document.addEventListener) { // IE 8 and lower
Expand Down Expand Up @@ -132,7 +132,10 @@ Handsontable.hooks.add('afterContextMenuShow', function() {
hot;

container.className = this.containerClassName;
container.id = htSettings.hotId;

if (!container.id && htSettings.hotId) {
container.id = htSettings.hotId;
}
element[0].appendChild(container);
hot = new Handsontable(container, htSettings);

Expand Down
6 changes: 3 additions & 3 deletions dist/ngHandsontable.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://github.com/handsontable/ngHandsontable/issues"
},
"author": "Marcin Warpechowski <[email protected]>",
"version": "0.9.0",
"version": "0.10.0",
"devDependencies": {
"angular": "^1.5.0",
"angular-mocks": "^1.5.0",
Expand Down
2 changes: 1 addition & 1 deletion src/services/settingFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
hot;

container.className = this.containerClassName;

if (!container.id && htSettings.hotId) {
container.id = htSettings.hotId;
}
Expand Down

0 comments on commit cbf4ec1

Please sign in to comment.