Commit 6386804150567a4b0bfc3d3ee6d80007afeeaae1

Authored by Antonio Terceiro
1 parent 59489b86

Fix syntax error on profile ballon links function

This fixes the ballon on Internet Explorer 7 and probably also on other
browsers.

(ActionItem1673)
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
public/javascripts/application.js
... ... @@ -267,7 +267,7 @@ function toggleSubmenu(trigger, title, link_list) {
267 267 jQuery.each(link_hash[label], function(option, value){
268 268 options += option +'="'+ value + '" ';
269 269 })
270   - list.append('<li><a '+ options +'">' + label + '</a></li>');
  270 + list.append('<li><a '+ options +'>' + label + '</a></li>');
271 271 }
272 272 });
273 273 content.append(list);
... ...