Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Refix IE Overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Oct 24, 2015
1 parent 9737f2e commit 9be5485
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -829,7 +829,7 @@ Class.create("FilesList", SelectableElements, {
delete this.headerMenu;
}
buffer = '<div class="panelHeader"><div style="float:right;padding-right:5px;font-size:1px;height:16px;"><input type="image" height="16" width="16" src="'+ajxpResourcesFolder+'/images/actions/16/zoom-in.png" id="slider-input-1" style="border:0px;width:16px;height:16px;margin-top:0px;padding:0px;" value="64"/></div>'+MessageHash[126]+'</div>';
buffer += '<div id="selectable_div-'+this.__currentInstanceIndex+'" class="selectable_div'+(this._displayMode == "detail" ? ' detailed':'')+'" style="overflow-y:auto;overflow-x:hidden;">';
buffer += '<div id="selectable_div-'+this.__currentInstanceIndex+'" class="selectable_div'+(this._displayMode == "detail" ? ' detailed':'')+'" style="overflow-y:'+ (this.options.replaceScroller?'hidden':'auto') +';overflow-x:hidden;">';
this.htmlElement.update(buffer);
if(this.paginationData && parseInt(this.paginationData.get('total')) > 1 ){
this.htmlElement.addClassName("paginated");
Expand Down

0 comments on commit 9be5485

Please sign in to comment.