rutulpatel / locallinks

Automatically exported from code.google.com/p/locallinks
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Should work on fileshare links as well #3

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Please update to also handle file share links (staring with \\)? The following 
code worked for me:

  $('a[href^=\\]').
    live('mousedown', handleMousedownOnLink).
    live('mouseout',  handleMouseoutOnLink).
    live('mouseup',   handleMouseupOnLink).
    live('click',     handleClickOnLink)

Original issue reported on code.google.com by ian320 on 19 Oct 2010 at 6:16