Bug Tracker

Changeset 5642

Show
Ignore:
Timestamp:
05/20/08 08:00:17 (6 months ago)
Author:
joern.zaefferer
Message:

tooltip plugin: fixed missing semicolon

Location:
trunk/plugins/tooltip
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/plugins/tooltip/jquery.tooltip.js

    r5637 r5642  
    5050            createHelper(settings); 
    5151            return this.each(function() { 
    52                     $.data(this, "tooltip", settings) 
     52                    $.data(this, "tooltip", settings); 
    5353                    this.tOpacity = helper.parent.css("opacity"); 
    5454                    // copy tooltip into its own expando and remove the title 
  • trunk/plugins/tooltip/jquery.tooltip.min.js

    r5637 r5642  
    77 * Copyright (c) 2006 - 2008 Jörn Zaefferer 
    88 * 
    9  * $Id: jquery.tooltip.js 5477 2008-05-06 22:07:24Z joern.zaefferer $ 
     9 * $Id: jquery.tooltip.js 5637 2008-05-19 21:51:26Z joern.zaefferer $ 
    1010 *  
    1111 * Dual licensed under the MIT and GPL licenses: 
    1212 *   http://www.opensource.org/licenses/mit-license.php 
    1313 *   http://www.gnu.org/licenses/gpl.html 
    14  */;(function($){var helper={},current,title,tID,IE=$.browser.msie&&/MSIE\s(5\.5|6\.)/.test(navigator.userAgent),track=false;$.tooltip={blocked:false,defaults:{delay:200,fade:false,showURL:true,extraClass:"",top:15,left:15,id:"tooltip"},block:function(){$.tooltip.blocked=!$.tooltip.blocked;}};$.fn.extend({tooltip:function(settings){settings=$.extend({},$.tooltip.defaults,settings);createHelper(settings);return this.each(function(){$.data(this,"tooltip",settings)this.tOpacity=helper.parent.css("opacity");this.tooltipText=this.title;$(this).removeAttr("title");this.alt="";}).mouseover(save).mouseout(hide).click(hide);},fixPNG:IE?function(){return this.each(function(){var image=$(this).css('backgroundImage');if(image.match(/^url\(["']?(.*\.png)["']?\)$/i)){image=RegExp.$1;$(this).css({'backgroundImage':'none','filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='"+image+"')"}).each(function(){var position=$(this).css('position');if(position!='absolute'&&position!='relative')$(this).css('position','relative');});}});}:function(){return this;},unfixPNG:IE?function(){return this.each(function(){$(this).css({'filter':'',backgroundImage:''});});}:function(){return this;},hideWhenEmpty:function(){return this.each(function(){$(this)[$(this).html()?"show":"hide"]();});},url:function(){return this.attr('href')||this.attr('src');}});function createHelper(settings){if(helper.parent)return;helper.parent=$('<div id="'+settings.id+'"><h3></h3><div class="body"></div><div class="url"></div></div>').appendTo(document.body).hide();if($.fn.bgiframe)helper.parent.bgiframe();helper.title=$('h3',helper.parent);helper.body=$('div.body',helper.parent);helper.url=$('div.url',helper.parent);}function settings(element){return $.data(element,"tooltip");}function handle(event){if(settings(this).delay)tID=setTimeout(show,settings(this).delay);else 
     14 */;(function($){var helper={},current,title,tID,IE=$.browser.msie&&/MSIE\s(5\.5|6\.)/.test(navigator.userAgent),track=false;$.tooltip={blocked:false,defaults:{delay:200,fade:false,showURL:true,extraClass:"",top:15,left:15,id:"tooltip"},block:function(){$.tooltip.blocked=!$.tooltip.blocked;}};$.fn.extend({tooltip:function(settings){settings=$.extend({},$.tooltip.defaults,settings);createHelper(settings);return this.each(function(){$.data(this,"tooltip",settings);this.tOpacity=helper.parent.css("opacity");this.tooltipText=this.title;$(this).removeAttr("title");this.alt="";}).mouseover(save).mouseout(hide).click(hide);},fixPNG:IE?function(){return this.each(function(){var image=$(this).css('backgroundImage');if(image.match(/^url\(["']?(.*\.png)["']?\)$/i)){image=RegExp.$1;$(this).css({'backgroundImage':'none','filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='"+image+"')"}).each(function(){var position=$(this).css('position');if(position!='absolute'&&position!='relative')$(this).css('position','relative');});}});}:function(){return this;},unfixPNG:IE?function(){return this.each(function(){$(this).css({'filter':'',backgroundImage:''});});}:function(){return this;},hideWhenEmpty:function(){return this.each(function(){$(this)[$(this).html()?"show":"hide"]();});},url:function(){return this.attr('href')||this.attr('src');}});function createHelper(settings){if(helper.parent)return;helper.parent=$('<div id="'+settings.id+'"><h3></h3><div class="body"></div><div class="url"></div></div>').appendTo(document.body).hide();if($.fn.bgiframe)helper.parent.bgiframe();helper.title=$('h3',helper.parent);helper.body=$('div.body',helper.parent);helper.url=$('div.url',helper.parent);}function settings(element){return $.data(element,"tooltip");}function handle(event){if(settings(this).delay)tID=setTimeout(show,settings(this).delay);else 
    1515show();track=!!settings(this).track;$(document.body).bind('mousemove',update);update(event);}function save(){if($.tooltip.blocked||this==current||(!this.tooltipText&&!settings(this).bodyHandler))return;current=this;title=this.tooltipText;if(settings(this).bodyHandler){helper.title.hide();var bodyContent=settings(this).bodyHandler.call(this);if(bodyContent.nodeType||bodyContent.jquery){helper.body.empty().append(bodyContent)}else{helper.body.html(bodyContent);}helper.body.show();}else if(settings(this).showBody){var parts=title.split(settings(this).showBody);helper.title.html(parts.shift()).show();helper.body.empty();for(var i=0,part;(part=parts[i]);i++){if(i>0)helper.body.append("<br/>");helper.body.append(part);}helper.body.hideWhenEmpty();}else{helper.title.html(title).show();helper.body.hide();}if(settings(this).showURL&&$(this).url())helper.url.html($(this).url().replace('http://','')).show();else 
    1616helper.url.hide();helper.parent.addClass(settings(this).extraClass);if(settings(this).fixPNG)helper.parent.fixPNG();handle.apply(this,arguments);}function show(){tID=null;if(settings(current).fade){if(helper.parent.is(":animated"))helper.parent.stop().show().fadeTo(settings(current).fade,current.tOpacity);else 
  • trunk/plugins/tooltip/jquery.tooltip.pack.js

    r5637 r5642  
    1313 *   http://www.gnu.org/licenses/gpl.html 
    1414 */ 
    15 eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(7($){k e={},9,l,A,N=$.2v.2h&&/29\\s(5\\.5|6\\.)/.1M(1H.2u),I=10;$.j={w:10,1h:{14:25,r:10,1c:18,W:"",E:15,F:15,13:"j"},2t:7(){$.j.w=!$.j.w}};$.L.1u({j:7(a){a=$.1u({},$.j.1h,a);1q(a);f 2.D(7(){$.1j(2,"j",a)2.Z=e.3.m("1g");2.11=2.l;$(2).24("l");2.22=""}).21(1d).1U(o).1S(o)},G:N?7(){f 2.D(7(){k b=$(2).m(\'X\');4(b.1J(/^q\\(["\']?(.*\\.1I)["\']?\\)$/i)){b=1F.$1;$(2).m({\'X\':\'1D\',\'1C\':"2s:2r.2n.2m(2k=18, 2j=2i, 1p=\'"+b+"\')"}).D(7(){k a=$(2).m(\'1o\');4(a!=\'2g\'&&a!=\'1v\')$(2).m(\'1o\',\'1v\')})}})}:7(){f 2},1l:N?7(){f 2.D(7(){$(2).m({\'1C\':\'\',X:\'\'})})}:7(){f 2},1y:7(){f 2.D(7(){$(2)[$(2).C()?"n":"o"]()})},q:7(){f 2.1k(\'28\')||2.1k(\'1p\')}});7 1q(a){4(e.3)f;e.3=$(\'<t 13="\'+a.13+\'"><Y></Y><t 1i="g"></t><t 1i="q"></t></t>\').27(K.g).o();4($.L.1f)e.3.1f();e.l=$(\'Y\',e.3);e.g=$(\'t.g\',e.3);e.q=$(\'t.q\',e.3)}7 8(a){f $.1j(a,"j")}7 1e(a){4(8(2).14)A=26(n,8(2).14);p n();I=!!8(2).I;$(K.g).23(\'V\',u);u(a)}7 1d(){4($.j.w||2==9||(!2.11&&!8(2).T))f;9=2;l=2.11;4(8(2).T){e.l.o();k a=8(2).T.1Z(2);4(a.1Y||a.1V){e.g.1b().S(a)}p{e.g.C(a)}e.g.n()}p 4(8(2).17){k b=l.1T(8(2).17);e.l.C(b.1R()).n();e.g.1b();1Q(k i=0,Q;(Q=b[i]);i++){4(i>0)e.g.S("<1P/>");e.g.S(Q)}e.g.1y()}p{e.l.C(l).n();e.g.o()}4(8(2).1c&&$(2).q())e.q.C($(2).q().1O(\'1N://\',\'\')).n();p e.q.o();e.3.O(8(2).W);4(8(2).G)e.3.G();1e.1L(2,1K)}7 n(){A=R;4(8(9).r){4(e.3.H(":16"))e.3.P().n().M(8(9).r,9.Z);p e.3.H(\':19\')?e.3.M(8(9).r,9.Z):e.3.1G(8(9).r)}p{e.3.n()}u()}7 u(c){4($.j.w)f;4(c&&c.1W.1X=="1E"){f}4(!I&&e.3.H(":19")){$(K.g).1a(\'V\',u)}4(9==R){$(K.g).1a(\'V\',u);f}e.3.U("z-12").U("z-1B");k b=e.3[0].1A;k a=e.3[0].1z;4(c){b=c.2q+8(9).F;a=c.2o+8(9).E;k d=\'1x\';4(8(9).2l){d=$(B).1t()-b;b=\'1x\'}e.3.m({F:b,12:d,E:a})}k v=z(),h=e.3[0];4(v.x+v.1s<h.1A+h.1r){b-=h.1r+20+8(9).F;e.3.m({F:b+\'1m\'}).O("z-12")}4(v.y+v.1w<h.1z+h.1n){a-=h.1n+20+8(9).E;e.3.m({E:a+\'1m\'}).O("z-1B")}}7 z(){f{x:$(B).2f(),y:$(B).2e(),1s:$(B).1t(),1w:$(B).2p()}}7 o(a){4($.j.w)f;4(A)2d(A);9=R;k b=8(2);7 J(){e.3.U(b.W).o().m("1g","")}4(b.r){4(e.3.H(\':16\'))e.3.P().M(b.r,0,J);p e.3.P().2c(b.r,J)}p J();4(8(2).G)e.3.1l()}$.L.2b=$.L.j})(2a);',62,156,'||this|parent|if|||function|settings|current||||||return|body|||tooltip|var|title|css|show|hide|else|url|fade||div|update||blocked|||viewport|tID|window|html|each|top|left|fixPNG|is|track|complete|document|fn|fadeTo|IE|addClass|stop|part|null|append|bodyHandler|removeClass|mousemove|extraClass|backgroundImage|h3|tOpacity|false|tooltipText|right|id|delay||animated|showBody|true|visible|unbind|empty|showURL|save|handle|bgiframe|opacity|defaults|class|data|attr|unfixPNG|px|offsetHeight|position|src|createHelper|offsetWidth|cx|width|extend|relative|cy|auto|hideWhenEmpty|offsetTop|offsetLeft|bottom|filter|none|OPTION|RegExp|fadeIn|navigator|png|match|arguments|apply|test|http|replace|br|for|shift|click|split|mouseout|jquery|target|tagName|nodeType|call||mouseover|alt|bind|removeAttr|200|setTimeout|appendTo|href|MSIE|jQuery|Tooltip|fadeOut|clearTimeout|scrollTop|scrollLeft|absolute|msie|crop|sizingMethod|enabled|positionLeft|AlphaImageLoader|Microsoft|pageY|height|pageX|DXImageTransform|progid|block|userAgent|browser'.split('|'),0,{})) 
     15eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(7($){k e={},9,l,A,N=$.2v.2h&&/29\\s(5\\.5|6\\.)/.1M(1H.2u),I=10;$.j={w:10,1h:{14:25,r:10,1c:18,W:"",E:15,F:15,13:"j"},2t:7(){$.j.w=!$.j.w}};$.L.1u({j:7(a){a=$.1u({},$.j.1h,a);1q(a);f 2.D(7(){$.1j(2,"j",a);2.Z=e.3.m("1g");2.11=2.l;$(2).24("l");2.22=""}).21(1d).1U(o).1S(o)},G:N?7(){f 2.D(7(){k b=$(2).m(\'X\');4(b.1J(/^q\\(["\']?(.*\\.1I)["\']?\\)$/i)){b=1F.$1;$(2).m({\'X\':\'1D\',\'1C\':"2s:2r.2n.2m(2k=18, 2j=2i, 1p=\'"+b+"\')"}).D(7(){k a=$(2).m(\'1o\');4(a!=\'2g\'&&a!=\'1v\')$(2).m(\'1o\',\'1v\')})}})}:7(){f 2},1l:N?7(){f 2.D(7(){$(2).m({\'1C\':\'\',X:\'\'})})}:7(){f 2},1y:7(){f 2.D(7(){$(2)[$(2).C()?"n":"o"]()})},q:7(){f 2.1k(\'28\')||2.1k(\'1p\')}});7 1q(a){4(e.3)f;e.3=$(\'<t 13="\'+a.13+\'"><Y></Y><t 1i="g"></t><t 1i="q"></t></t>\').27(K.g).o();4($.L.1f)e.3.1f();e.l=$(\'Y\',e.3);e.g=$(\'t.g\',e.3);e.q=$(\'t.q\',e.3)}7 8(a){f $.1j(a,"j")}7 1e(a){4(8(2).14)A=26(n,8(2).14);p n();I=!!8(2).I;$(K.g).23(\'V\',u);u(a)}7 1d(){4($.j.w||2==9||(!2.11&&!8(2).T))f;9=2;l=2.11;4(8(2).T){e.l.o();k a=8(2).T.1Z(2);4(a.1Y||a.1V){e.g.1b().S(a)}p{e.g.C(a)}e.g.n()}p 4(8(2).17){k b=l.1T(8(2).17);e.l.C(b.1R()).n();e.g.1b();1Q(k i=0,Q;(Q=b[i]);i++){4(i>0)e.g.S("<1P/>");e.g.S(Q)}e.g.1y()}p{e.l.C(l).n();e.g.o()}4(8(2).1c&&$(2).q())e.q.C($(2).q().1O(\'1N://\',\'\')).n();p e.q.o();e.3.O(8(2).W);4(8(2).G)e.3.G();1e.1L(2,1K)}7 n(){A=R;4(8(9).r){4(e.3.H(":16"))e.3.P().n().M(8(9).r,9.Z);p e.3.H(\':19\')?e.3.M(8(9).r,9.Z):e.3.1G(8(9).r)}p{e.3.n()}u()}7 u(c){4($.j.w)f;4(c&&c.1W.1X=="1E"){f}4(!I&&e.3.H(":19")){$(K.g).1a(\'V\',u)}4(9==R){$(K.g).1a(\'V\',u);f}e.3.U("z-12").U("z-1B");k b=e.3[0].1A;k a=e.3[0].1z;4(c){b=c.2q+8(9).F;a=c.2o+8(9).E;k d=\'1x\';4(8(9).2l){d=$(B).1t()-b;b=\'1x\'}e.3.m({F:b,12:d,E:a})}k v=z(),h=e.3[0];4(v.x+v.1s<h.1A+h.1r){b-=h.1r+20+8(9).F;e.3.m({F:b+\'1m\'}).O("z-12")}4(v.y+v.1w<h.1z+h.1n){a-=h.1n+20+8(9).E;e.3.m({E:a+\'1m\'}).O("z-1B")}}7 z(){f{x:$(B).2f(),y:$(B).2e(),1s:$(B).1t(),1w:$(B).2p()}}7 o(a){4($.j.w)f;4(A)2d(A);9=R;k b=8(2);7 J(){e.3.U(b.W).o().m("1g","")}4(b.r){4(e.3.H(\':16\'))e.3.P().M(b.r,0,J);p e.3.P().2c(b.r,J)}p J();4(8(2).G)e.3.1l()}$.L.2b=$.L.j})(2a);',62,156,'||this|parent|if|||function|settings|current||||||return|body|||tooltip|var|title|css|show|hide|else|url|fade||div|update||blocked|||viewport|tID|window|html|each|top|left|fixPNG|is|track|complete|document|fn|fadeTo|IE|addClass|stop|part|null|append|bodyHandler|removeClass|mousemove|extraClass|backgroundImage|h3|tOpacity|false|tooltipText|right|id|delay||animated|showBody|true|visible|unbind|empty|showURL|save|handle|bgiframe|opacity|defaults|class|data|attr|unfixPNG|px|offsetHeight|position|src|createHelper|offsetWidth|cx|width|extend|relative|cy|auto|hideWhenEmpty|offsetTop|offsetLeft|bottom|filter|none|OPTION|RegExp|fadeIn|navigator|png|match|arguments|apply|test|http|replace|br|for|shift|click|split|mouseout|jquery|target|tagName|nodeType|call||mouseover|alt|bind|removeAttr|200|setTimeout|appendTo|href|MSIE|jQuery|Tooltip|fadeOut|clearTimeout|scrollTop|scrollLeft|absolute|msie|crop|sizingMethod|enabled|positionLeft|AlphaImageLoader|Microsoft|pageY|height|pageX|DXImageTransform|progid|block|userAgent|browser'.split('|'),0,{}))