1. 11 Apr, 2012 3 commits
  2. 10 Apr, 2012 3 commits
  3. 09 Apr, 2012 2 commits
  4. 07 Apr, 2012 1 commit
  5. 05 Apr, 2012 2 commits
  6. 04 Apr, 2012 17 commits
  7. 28 Mar, 2012 2 commits
  8. 27 Mar, 2012 1 commit
  9. 25 Mar, 2012 1 commit
  10. 23 Mar, 2012 6 commits
  11. 21 Mar, 2012 2 commits
    • Andrew Smith's avatar
      Remove hard-coded div on issue page · 23a857bf
      Andrew Smith authored
      23a857bf
    • Andrew Smith's avatar
      Updates the plugin so that it can support multiple instances. · a510f0a8
      Andrew Smith authored
      Multiple instances need to be applied to different elements in the DOM
      otherwise multiple menus will be called for each click/right click.
      
      e.g.
      
      jQuery(document).ContextMenu(url);
      
      would work for any form on a page. Using this would mean that multiple
      instances couldn't be used though
      
      jQuery('#content form').eq(0).ContextMenu(url);
      jQuery('#content form').eq(3).ContextMenu(url);
      
      Using the above 2 menus will be created for the first and 4th forms on
      the page. Any of forms won't response to menu clicks.
      
      jQuery(docuemnt).ContextMenu(url);
      jQuery('#content form').eq(0).ContextMenu(url);
      
      With the above any form on the page will respond to menu clicks but the
      first form will send 2 requests for the context menu.
      a510f0a8