mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-01 20:19:42 +08:00
code style. FOR
This commit is contained in:
@ -158,7 +158,7 @@ yii = (function ($) {
|
||||
return {};
|
||||
}
|
||||
var qs = url.substring(pos + 1).split('&');
|
||||
for(var i = 0, result = {}; i < qs.length; i++){
|
||||
for (var i = 0, result = {}; i < qs.length; i++) {
|
||||
qs[i] = qs[i].split('=');
|
||||
result[decodeURIComponent(qs[i][0])] = decodeURIComponent(qs[i][1]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user