action 없이 실행 할 수 있도록

This commit is contained in:
conory 2017-01-21 21:33:58 +09:00
parent 8520037459
commit 699937a09e

View file

@ -168,7 +168,7 @@
// Convert params to object and fill in the module and act.
params = params ? ($.isArray(params) ? arr2obj(params) : params) : {};
action = action.split(".");
if (action.length != 2) return;
//if (action.length != 2) return;
params.module = action[0];
params.act = action[1];
params._rx_ajax_compat = 'JSON';
@ -275,7 +275,7 @@
// Convert params to object and fill in the module and act.
params = params ? ($.isArray(params) ? arr2obj(params) : params) : {};
action = action.split(".");
if (action.length != 2) return;
//if (action.length != 2) return;
params.module = action[0];
params.act = action[1];