Index: trunk/tools/planet/zh/templates/index.html.tmpl |
— | — | @@ -25,10 +25,12 @@ |
26 | 26 | var al = o.query.userinfo.acceptlang; |
27 | 27 | for (var i = 0; i < al.length; i++) { |
28 | 28 | var l = al[i].*.replace('_', '-').toLowerCase(); |
29 | | - if ('zh-hans|zh-cn|zh-my|zh-sg'.indexOf(l)) { |
| 29 | + if ('zh-hans|zh-cn|zh-my|zh-sg'.indexOf(l) != -1) { |
30 | 30 | window.location.href = 'index.zh-hans.html'; |
31 | | - } else if ('zh-hant|zh-hk|zh-mo|zh-tw'.indexOf(l)) { |
| 31 | + break; |
| 32 | + } else if ('zh-hant|zh-hk|zh-mo|zh-tw'.indexOf(l) != -1) { |
32 | 33 | window.location.href = 'index.zh-hant.html'; |
| 34 | + break; |
33 | 35 | } |
34 | 36 | } |
35 | 37 | } |