Stefan Huber

chore: angular version bump

......@@ -72,7 +72,7 @@ var Repository = (function () {
return new Promise(function (resolve, reject) {
_this.rest.heartbeat(deviceInfo)
.then(function (response) {
if (response && typeof response.fullscreen == 'boolean') {
if (response && typeof response.fullscreen == 'number') {
_this.device.fullscreen(response.fullscreen);
}
if (response && response.restart == 1) {
......
This diff is collapsed. Click to expand it.
......@@ -15,18 +15,18 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@angular/common": "^2.4.8",
"@angular/core": "^2.4.8",
"@angular/http": "^2.4.8",
"@angular/platform-browser": "^2.4.8",
"@angular/common": "4.0.0",
"@angular/core": "4.0.0",
"@angular/http": "4.0.0",
"@angular/platform-browser": "4.0.0",
"@types/jasmine": "^2.5.43",
"jasmine": "^2.5.3",
"pouchdb": "^6.1.2",
"pouchdb-upsert": "^2.0.2",
"reflect-metadata": "^0.1.9",
"rxjs": "^5.1.1",
"typescript": "^2.1.6",
"zone.js": "^0.7.7"
"rxjs": "5.1.1",
"sw-toolbox": "3.4.0",
"zone.js": "^0.8.4"
},
"peerDependencies": {
"@angular/core": "*",
......
......@@ -78,7 +78,7 @@ export class Repository {
return new Promise<boolean>((resolve, reject) => {
this.rest.heartbeat(deviceInfo)
.then(response => {
if (response && typeof response.fullscreen == 'boolean') {
if (response && typeof response.fullscreen == 'number') {
this.device.fullscreen(response.fullscreen);
}
......