VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: Cleanshooter on October 25, 2011, 17:01:57 PM

Title: Tooltip "Stickyness" fix
Post by: Cleanshooter on October 25, 2011, 17:01:57 PM
Hey to anyone with access to the SVN please add this

.mousedown(
   function(e) {
      this.title = tip.t;
      $("#vtip").fadeOut("slow").remove();
   }
).mouseup(
   function(e) {
      this.title = tip.t;
      $("#vtip").fadeOut("slow").remove();
   }
)

to: administrator/components/com_virtuemart/assets/js/vm2admin.js line 229.

It will fix the stickyness of the tool tips when you click on something or try and drag it.

<3 Cleanshooter

Title: Re: Tooltip "Stickyness" fix
Post by: Studio 42 on October 27, 2011, 00:10:50 AM
Hi,
Patch added to file.

Greets,

Patrick