Skip to content
This repository was archived by the owner on Mar 5, 2024. It is now read-only.

Commit 6748e82

Browse files
committed
Update demo to fix bugs
1 parent 8ded222 commit 6748e82

File tree

7 files changed

+6
-62
lines changed

7 files changed

+6
-62
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
typings
22
npm-debug.log
33
dist/
4+
demo/**/*.js*
45
node_modules/
56
bower_components/
67
coverage/
7-
test/*.js
8+
test/*.js

demo/app/app.component.js

Lines changed: 0 additions & 39 deletions
This file was deleted.

demo/app/app.component.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

demo/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {NgGrid, NgGridItem} from 'angular2-grid';
33

44
@Component({
55
selector: 'my-app',
6-
template: '<h1>My First Angular 2 App</h1><div class="grid" [ngGrid]="{\'max_cols\': 6, \'auto_resize\': true}"><div class="grid-item" [ngGridItem]="{\'sizex\': \'2\', \'sizey\': \'3\'}"></div></div>',
6+
template: '<h1>My First Angular 2 App</h1><div class="grid" [ngGrid]="{\'max_cols\': 6, \'auto_resize\': true}"><div class="grid-item" [ngGridItem]="{\'sizex\': 2, \'sizey\': 3}"></div></div>',
77
directives: [NgGrid, NgGridItem]
88
})
99
export class AppComponent {}

demo/app/boot.js

Lines changed: 0 additions & 16 deletions
This file was deleted.

demo/app/boot.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

demo/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
},
1010
"license": "ISC",
1111
"dependencies": {
12-
"angular2": "2.0.0-beta.09",
12+
"angular2": "2.0.0-beta.16",
1313
"systemjs": "0.19.6",
1414
"es6-promise": "^3.0.2",
15-
"es6-shim": "^0.33.3",
15+
"es6-shim": "^0.35.0",
1616
"reflect-metadata": "0.1.2",
1717
"rxjs": "5.0.0-beta.2",
18-
"zone.js": "0.5.15",
18+
"zone.js": "^0.6.12",
1919
"angular2-grid": "~0.5.0"
2020
},
2121
"devDependencies": {

0 commit comments

Comments
 (0)