aboutsummaryrefslogtreecommitdiffstats
path: root/web/js.js
diff options
context:
space:
mode:
authorlouise <louise>2009-12-15 14:46:14 +0000
committerlouise <louise>2009-12-15 14:46:14 +0000
commit773b0d350a83a3f4328dd48593735a086181e593 (patch)
tree76c629bfa5d50935c71dc0c58d3b054d928ecda0 /web/js.js
parent49fe0bc65690e0e086b9cd319cd2c8a811646a78 (diff)
Remove custom separator code
Diffstat (limited to 'web/js.js')
-rw-r--r--web/js.js8
1 files changed, 1 insertions, 7 deletions
diff --git a/web/js.js b/web/js.js
index ba4af8ec2..223a8f2ee 100644
--- a/web/js.js
+++ b/web/js.js
@@ -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
});