Toggle navigation
Toggle navigation
This project
Loading...
Sign in
digsig
/
digsig-services
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Stefan Huber
2017-04-11 09:18:24 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
eabf69d454add7b84777c723482fb39264ee95af
eabf69d4
1 parent
34c63196
chore: angular version bump
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
dist/services/repository.js
dist/services/repository.js.map
package.json
src/services/repository.ts
dist/services/repository.js
View file @
eabf69d
...
...
@@ -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
)
{
...
...
dist/services/repository.js.map
View file @
eabf69d
This diff is collapsed. Click to expand it.
package.json
View file @
eabf69d
...
...
@@ -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"
:
"*"
,
...
...
src/services/repository.ts
View file @
eabf69d
...
...
@@ -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
);
}
...
...
Please
register
or
login
to post a comment