1
0
mirror of https://github.com/misterunknown/ifm.git synced 2025-08-09 09:36:29 +02:00

Disable fade of modal, as it is quite inefficient

Signed-off-by: Marco Dickert <marco@misterunknown.de>
This commit is contained in:
Marco Dickert
2020-08-04 22:05:38 +02:00
parent f0b647c2b9
commit 80c42ef47b

View File

@@ -33,7 +33,7 @@ function IFM(params) {
this.showModal = function( content, options ) {
options = options || {};
var modal = document.createElement( 'div' );
modal.classList.add( 'modal', 'fade' );
modal.classList.add( 'modal' );
modal.id = 'ifmmodal';
modal.attributes.role = 'dialog';
var modalDialog = document.createElement( 'div' );