diff options
author | louise <louise> | 2009-12-15 14:46:14 +0000 |
---|---|---|
committer | louise <louise> | 2009-12-15 14:46:14 +0000 |
commit | 773b0d350a83a3f4328dd48593735a086181e593 (patch) | |
tree | 76c629bfa5d50935c71dc0c58d3b054d928ecda0 /web/js.js | |
parent | 49fe0bc65690e0e086b9cd319cd2c8a811646a78 (diff) |
Remove custom separator code
Diffstat (limited to 'web/js.js')
-rw-r--r-- | web/js.js | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -319,13 +319,7 @@ function load_pins(x, y) { ajax_params.push(document.getElementById('extra_param').name + '=' + document.getElementById('extra_param').value); } - var separator; - if (window.Cobrand){ - separator = window.Cobrand.param_separator(); - }else{ - separator = ';'; - } - var url = [ root_path , '/ajax?', ajax_params.join(separator)].join(''); + var url = [ root_path , '/ajax?', ajax_params.join(';')].join(''); YAHOO.util.Connect.asyncRequest('GET', url, { success: pins_loaded }); |