Added timeout error handling for geo location

This commit is contained in:
Sarven Capadisli
2010-01-13 15:36:42 +00:00
parent 9b2fdefe39
commit 2000d2d36b
2 changed files with 13 additions and 3 deletions

View File

@@ -632,9 +632,18 @@ var SN = { // StatusNet
},
function(error) {
if (error.PERMISSION_DENIED == 1) {
removeNoticeDataGeo();
switch(error.code) {
case error.PERMISSION_DENIED:
removeNoticeDataGeo();
break;
case error.TIMEOUT:
$('#'+SN.C.S.NoticeGeoName).text(NoticeDataGeo_text.ErrorTimeout).removeClass('processing');
break;
}
},
{
timeout: 10000
}
);
}