From b5f32e51074adf02aeaaa2f3ff8b518ea8d91f84 Mon Sep 17 00:00:00 2001 From: Hevin Date: Fri, 22 Sep 2017 20:13:15 +0800 Subject: [PATCH] Update example --- example/index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/example/index.html b/example/index.html index e897272..869263a 100644 --- a/example/index.html +++ b/example/index.html @@ -121,7 +121,7 @@ (result) => { $("#tagsResult").html(result.tags) }, (error) => { - alert(error.errorCode) + alert(error.code) }) } catch (exception) { console.log(exception) @@ -133,7 +133,7 @@ (result) => { $("#tagsResult").html(result.tags) }, (error) => { - alert(error.errorCode) + alert(error.code) }) }) @@ -143,7 +143,7 @@ alert(result.sequence) $("#tagsResult").html("") }, (error) => { - alert(error.errorCode) + alert(error.code) }) }) @@ -153,7 +153,7 @@ (result) => { $("#aliasResult").html(result.alias) }, (error) => { - alert(error.errorCode) + alert(error.code) }) }) @@ -162,7 +162,7 @@ (result) => { alert(JSON.stringify(result)); }, (error) => { - alert(error.errorCode) + alert(error.code) }) }); @@ -171,7 +171,7 @@ (result) => { alert(JSON.stringify(result)); }, (error) => { - alert(error.errorCode) + alert(error.code) }) }); };