use correct function name in if statement

This commit is contained in:
Philipp Schaefer 2013-10-31 00:11:26 +01:00
parent 3fba33b1ff
commit 1d838568a0

View File

@ -2,7 +2,7 @@
window.aboutIITC = function() { window.aboutIITC = function() {
var v = (script_info.script && script_info.script.version || script_info.dateTimeVersion) + ' ['+script_info.buildName+']'; var v = (script_info.script && script_info.script.version || script_info.dateTimeVersion) + ' ['+script_info.buildName+']';
if (typeof android !== 'undefined' && android && android.getVersionCode) { if (typeof android !== 'undefined' && android && android.getVersionName) {
v += '[IITC Mobile '+android.getVersionName()+']'; v += '[IITC Mobile '+android.getVersionName()+']';
} }