Skip to content

Commit

Permalink
Fix some things I broke
Browse files Browse the repository at this point in the history
  • Loading branch information
interrobrian committed Jun 21, 2018
1 parent 2c1059c commit 3d732e8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 27 deletions.
38 changes: 16 additions & 22 deletions package-lock.json

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

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@
"devDependencies": {
"nativescript-dev-typescript": "^0.7.1",
"tns-core-modules": "4.1.0",
"typescript": "2.7.1",
"tns-platform-declarations": "4.1.0",
"tslib": "1.7.1"
"typescript": "^2.7.2",
"tns-platform-declarations": "4.1.0"
}
}
2 changes: 1 addition & 1 deletion tns-oauth-webview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class TnsOauthWebView extends WebView {

public onUnloaded() {
super.onUnloaded();
if (!isAppSuspending) {
if (!isAppSuspending()) {
this._cancelEventHandler("User cancelled.");
if (isAndroid) {
this.restoreAndroidSoftInputMode();
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"noLib": false,
"preserveConstEnums": true,
"declaration": false,
"importHelpers": true,
"noEmitHelpers": true,
"suppressImplicitAnyIndexErrors": true,
"lib": [
"es6",
Expand Down

0 comments on commit 3d732e8

Please sign in to comment.