Charuru / lionbars

A free to use, lightweight jQuery plugin that makes scrollbars look like in OSX Lion.
148 stars 61 forks source link

There is a bug with wrapper and lionbars id #4

Open stalniy opened 12 years ago

stalniy commented 12 years ago

Change this

el.wrapInner('<div class="lb-wrap" id="lb-wrap-'+id+'-'+elemId+'"></div>');
wrap = $('#lb-wrap-'+id+'-'+elemId);

To this:

wrap = el.wrapInner('<div class="lb-wrap" id="lb-wrap-'+id+'-'+elemId+'"></div>').children(0);

Otherewise some element will be wrapped twice if you use ajax or some timers to update its content