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

Commit 9be5485

Browse files
committed
Refix IE Overflow
1 parent 9737f2e commit 9be5485

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/plugins/gui.ajax/res/js/ui/prototype/class.FilesList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ Class.create("FilesList", SelectableElements, {
829829
delete this.headerMenu;
830830
}
831831
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>';
832-
buffer += '<div id="selectable_div-'+this.__currentInstanceIndex+'" class="selectable_div'+(this._displayMode == "detail" ? ' detailed':'')+'" style="overflow-y:auto;overflow-x:hidden;">';
832+
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;">';
833833
this.htmlElement.update(buffer);
834834
if(this.paginationData && parseInt(this.paginationData.get('total')) > 1 ){
835835
this.htmlElement.addClassName("paginated");

0 commit comments

Comments
 (0)