Skip to content

Commit 597f971

Browse files
authored
Merge pull request #13 from ypzhuang/master
fixed error
2 parents 79843ff + f7c2075 commit 597f971

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

www/appinfo.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ channel.waitForInitialization('onAppInfoReady');
88
function appInfo() {
99

1010
this.version = null;
11-
this.identfier = null;
11+
this.identifier = null;
1212
this.build = null;
1313

1414
var me = this;
@@ -19,8 +19,8 @@ function appInfo() {
1919
me.identifier = info.identifier;
2020
me.build = info.build || 'unknown';
2121
channel.onAppInfoReady.fire();
22-
},function(e) {
23-
utils.alert("[ERROR] Error initializing Cordova: " + e);
22+
},function(e) {
23+
console.log("[ERROR] Error initializing Cordova: " + e);
2424
});
2525
});
2626
}

0 commit comments

Comments
 (0)