mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 07:04:57 +00:00
concat data-query to url on trigger update
This commit is contained in:
parent
df313d316c
commit
3f399dfcea
|
@ -438,9 +438,13 @@ $(document).ready( function() {
|
|||
base = '';
|
||||
var view = element.data('view');
|
||||
var action = element.data('action');
|
||||
if(view && action)
|
||||
var query = element.data('query');
|
||||
if(view && action) {
|
||||
url = seeddms_webroot+base+"out/out."+view+".php?action="+action;
|
||||
else
|
||||
if(query) {
|
||||
url += "&"+query;
|
||||
}
|
||||
} else
|
||||
url = href;
|
||||
if(typeof param1 === 'object') {
|
||||
for(var key in param1) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user