<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -87,7 +87,7 @@
 		  if (settings.direction == &quot;right&quot;) {
 		    direction = {right:&quot;-&quot;+settings.width};
 		    $(&quot;#pageslide-slide-wrap&quot;).css({left:0});
-		    $(&quot;body&quot;).css({overflowX:'hidden'});
+        _overflowFixAdd();
 		  } 
 		  else {
 		    direction = {left:&quot;-&quot;+settings.width};
@@ -133,7 +133,7 @@
   	      // clear bug
   	      $('#pageslide-body-wrap, #pageslide-slide-wrap').css('left','');
   	      $('#pageslide-body-wrap, #pageslide-slide-wrap').css('right','');
-  	      $(&quot;body&quot;).css({overflowX:''});
+  	      _overflowFixRemove();
           settings.stop();
           settings.complete();
         });
@@ -156,6 +156,9 @@
 	    }
 	  };
 	  
+	  // fixes an annoying horizontal scrollbar.
+	  function _overflowFixAdd(){($.browser.msie) ? $(&quot;body, html&quot;).css({overflowX:'hidden'}) : $(&quot;body&quot;).css({overflowX:'hidden'});}
+	  function _overflowFixRemove(){($.browser.msie) ? $(&quot;body, html&quot;).css({overflowX:''}) : $(&quot;body&quot;).css({overflowX:''});}
 		
     // Initalize pageslide, if it hasn't already been done.
     _initialize(this);</diff>
      <filename>jquery.pageslide.js</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-(function($){$.fn.pageSlide=function(options){var settings=$.extend({width:&quot;300px&quot;,duration:&quot;normal&quot;,direction:&quot;left&quot;,modal:false,start:function(){},stop:function(){},complete:function(){}},options);var pageslide_slide_wrap_css={position:'fixed',width:'0',top:'0',height:'100%',zIndex:'999'};var pageslide_body_wrap_css={position:'relative',zIndex:'0'};var pageslide_blanket_css={position:'absolute',top:'0px',left:'0px',height:'100%',width:'100%',opacity:'0.0',backgroundColor:'black',zIndex:'1',display:'none'};function _initialize(anchor){if($(&quot;#pageslide-body-wrap, #pageslide-content, #pageslide-slide-wrap&quot;).size()==0){var psBodyWrap=document.createElement(&quot;div&quot;);$(psBodyWrap).css(pageslide_body_wrap_css);$(psBodyWrap).attr(&quot;id&quot;,&quot;pageslide-body-wrap&quot;).width($(&quot;body&quot;).width());$(&quot;body&quot;).contents().wrapAll(psBodyWrap);var psSlideContent=document.createElement(&quot;div&quot;);$(psSlideContent).attr(&quot;id&quot;,&quot;pageslide-content&quot;).width(settings.width);var psSlideWrap=document.createElement(&quot;div&quot;);$(psSlideWrap).css(pageslide_slide_wrap_css);$(psSlideWrap).attr(&quot;id&quot;,&quot;pageslide-slide-wrap&quot;).append(psSlideContent);$(&quot;body&quot;).append(psSlideWrap)}if($(&quot;#pageslide-blanket&quot;).size()==0&amp;&amp;settings.modal==true){var psSlideBlanket=document.createElement(&quot;div&quot;);$(psSlideBlanket).css(pageslide_blanket_css);$(psSlideBlanket).attr(&quot;id&quot;,&quot;pageslide-blanket&quot;);$(&quot;body&quot;).append(psSlideBlanket);$(&quot;#pageslide-blanket&quot;).click(function(){return false})}$(&quot;#pageslide-slide-wrap&quot;).click(function(){return false});if(settings.modal!=true){$(document).unbind('click').click(function(elm){_closeSlide(elm);return false})}$(window).resize(function(){$(&quot;#pageslide-body-wrap&quot;).width($(&quot;body&quot;).width())})};function _openSlide(elm){_showBlanket();settings.start();if(settings.direction==&quot;right&quot;){direction={right:&quot;-&quot;+settings.width};$(&quot;#pageslide-slide-wrap&quot;).css({left:0});$(&quot;body&quot;).css({overflowX:'hidden'})}else{direction={left:&quot;-&quot;+settings.width};$(&quot;#pageslide-slide-wrap&quot;).css({right:0})};$(&quot;#pageslide-slide-wrap&quot;).animate({width:settings.width},settings.duration);$(&quot;#pageslide-body-wrap&quot;).animate(direction,settings.duration,function(){settings.stop();$.ajax({type:&quot;GET&quot;,url:$(elm).attr(&quot;href&quot;),success:function(data){$(&quot;#pageslide-content&quot;).html(data).queue(function(){$(this).dequeue();$(&quot;#pageslide-slide-wrap a&quot;).unbind('click').click(function(elm){document.location.href=elm.target.href});$(this).find('.pageslide-close').unbind('click').click(function(elm){_closeSlide(elm);$(this).find('pageslide-close').unbind('click')});settings.complete()})}})})};function _closeSlide(elm){if($(elm)[0].button!=2&amp;&amp;$(&quot;#pageslide-slide-wrap&quot;).css('width')!=&quot;0px&quot;){_hideBlanket();settings.start();direction=($(&quot;#pageslide-slide-wrap&quot;).css(&quot;left&quot;)!=&quot;0px&quot;)?{left:&quot;0&quot;}:{right:&quot;0&quot;};$(&quot;#pageslide-body-wrap&quot;).animate(direction,settings.duration);$(&quot;#pageslide-slide-wrap&quot;).animate({width:&quot;0&quot;},settings.duration,function(){$(&quot;#pageslide-content&quot;).empty();$('#pageslide-body-wrap, #pageslide-slide-wrap').css('left','');$('#pageslide-body-wrap, #pageslide-slide-wrap').css('right','');$(&quot;body&quot;).css({overflowX:''});settings.stop();settings.complete()})}};function _showBlanket(){if(settings.modal==true){$(&quot;#pageslide-blanket&quot;).toggle().animate({opacity:'0.8'},'fast','linear')}};function _hideBlanket(){if(settings.modal==true){$(&quot;#pageslide-blanket&quot;).animate({opacity:'0.0'},'fast','linear',function(){$(this).toggle()})}};_initialize(this);return this.each(function(){$(this).unbind(&quot;click&quot;).bind(&quot;click&quot;,function(){_openSlide(this);return false})})}})(jQuery);
\ No newline at end of file
+(function($){$.fn.pageSlide=function(options){var settings=$.extend({width:&quot;300px&quot;,duration:&quot;normal&quot;,direction:&quot;left&quot;,modal:false,start:function(){},stop:function(){},complete:function(){}},options);var pageslide_slide_wrap_css={position:'fixed',width:'0',top:'0',height:'100%',zIndex:'999'};var pageslide_body_wrap_css={position:'relative',zIndex:'0'};var pageslide_blanket_css={position:'absolute',top:'0px',left:'0px',height:'100%',width:'100%',opacity:'0.0',backgroundColor:'black',zIndex:'1',display:'none'};function _initialize(anchor){if($(&quot;#pageslide-body-wrap, #pageslide-content, #pageslide-slide-wrap&quot;).size()==0){var psBodyWrap=document.createElement(&quot;div&quot;);$(psBodyWrap).css(pageslide_body_wrap_css);$(psBodyWrap).attr(&quot;id&quot;,&quot;pageslide-body-wrap&quot;).width($(&quot;body&quot;).width());$(&quot;body&quot;).contents().wrapAll(psBodyWrap);var psSlideContent=document.createElement(&quot;div&quot;);$(psSlideContent).attr(&quot;id&quot;,&quot;pageslide-content&quot;).width(settings.width);var psSlideWrap=document.createElement(&quot;div&quot;);$(psSlideWrap).css(pageslide_slide_wrap_css);$(psSlideWrap).attr(&quot;id&quot;,&quot;pageslide-slide-wrap&quot;).append(psSlideContent);$(&quot;body&quot;).append(psSlideWrap)}if($(&quot;#pageslide-blanket&quot;).size()==0&amp;&amp;settings.modal==true){var psSlideBlanket=document.createElement(&quot;div&quot;);$(psSlideBlanket).css(pageslide_blanket_css);$(psSlideBlanket).attr(&quot;id&quot;,&quot;pageslide-blanket&quot;);$(&quot;body&quot;).append(psSlideBlanket);$(&quot;#pageslide-blanket&quot;).click(function(){return false})}$(&quot;#pageslide-slide-wrap&quot;).click(function(){return false});if(settings.modal!=true){$(document).unbind('click').click(function(elm){_closeSlide(elm);return false})}$(window).resize(function(){$(&quot;#pageslide-body-wrap&quot;).width($(&quot;body&quot;).width())})};function _openSlide(elm){_showBlanket();settings.start();if(settings.direction==&quot;right&quot;){direction={right:&quot;-&quot;+settings.width};$(&quot;#pageslide-slide-wrap&quot;).css({left:0});_overflowFixAdd()}else{direction={left:&quot;-&quot;+settings.width};$(&quot;#pageslide-slide-wrap&quot;).css({right:0})};$(&quot;#pageslide-slide-wrap&quot;).animate({width:settings.width},settings.duration);$(&quot;#pageslide-body-wrap&quot;).animate(direction,settings.duration,function(){settings.stop();$.ajax({type:&quot;GET&quot;,url:$(elm).attr(&quot;href&quot;),success:function(data){$(&quot;#pageslide-content&quot;).html(data).queue(function(){$(this).dequeue();$(&quot;#pageslide-slide-wrap a&quot;).unbind('click').click(function(elm){document.location.href=elm.target.href});$(this).find('.pageslide-close').unbind('click').click(function(elm){_closeSlide(elm);$(this).find('pageslide-close').unbind('click')});settings.complete()})}})})};function _closeSlide(elm){if($(elm)[0].button!=2&amp;&amp;$(&quot;#pageslide-slide-wrap&quot;).css('width')!=&quot;0px&quot;){_hideBlanket();settings.start();direction=($(&quot;#pageslide-slide-wrap&quot;).css(&quot;left&quot;)!=&quot;0px&quot;)?{left:&quot;0&quot;}:{right:&quot;0&quot;};$(&quot;#pageslide-body-wrap&quot;).animate(direction,settings.duration);$(&quot;#pageslide-slide-wrap&quot;).animate({width:&quot;0&quot;},settings.duration,function(){$(&quot;#pageslide-content&quot;).empty();$('#pageslide-body-wrap, #pageslide-slide-wrap').css('left','');$('#pageslide-body-wrap, #pageslide-slide-wrap').css('right','');_overflowFixRemove();settings.stop();settings.complete()})}};function _showBlanket(){if(settings.modal==true){$(&quot;#pageslide-blanket&quot;).toggle().animate({opacity:'0.8'},'fast','linear')}};function _hideBlanket(){if(settings.modal==true){$(&quot;#pageslide-blanket&quot;).animate({opacity:'0.0'},'fast','linear',function(){$(this).toggle()})}};function _overflowFixAdd(){($.browser.msie)?$(&quot;body, html&quot;).css({overflowX:'hidden'}):$(&quot;body&quot;).css({overflowX:'hidden'})}function _overflowFixRemove(){($.browser.msie)?$(&quot;body, html&quot;).css({overflowX:''}):$(&quot;body&quot;).css({overflowX:''})}_initialize(this);return this.each(function(){$(this).unbind(&quot;click&quot;).bind(&quot;click&quot;,function(){_openSlide(this);return false})})}})(jQuery);
\ No newline at end of file</diff>
      <filename>jquery.pageslide.min.js</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>bffe9854ded8d120067241a4dd324a57e487c297</id>
    </parent>
  </parents>
  <author>
    <name>Derek Perez</name>
    <email>derek@caring.com</email>
  </author>
  <url>http://github.com/srobbin/jquery-pageslide/commit/7950347e27e196a74bee02f27022d9c1dd036653</url>
  <id>7950347e27e196a74bee02f27022d9c1dd036653</id>
  <committed-date>2009-06-18T22:53:30-07:00</committed-date>
  <authored-date>2009-06-18T22:53:30-07:00</authored-date>
  <message>fixes minor overflow inconsistency in IE/Firefox.</message>
  <tree>4e9394d968125e49b75d1e7a6d65e4c0d3eb7bd4</tree>
  <committer>
    <name>Derek Perez</name>
    <email>derek@caring.com</email>
  </committer>
</commit>
