File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 22CHANGELOG
33=========
44
5+ unreleased
6+ ==========
7+
8+ * Ensure action buttons in directory listing do not get disabled after using
9+ cancel or back button if files or folders are selected.
10+
5113.0.1 (2023-07-13)
612==================
713
Original file line number Diff line number Diff line change @@ -91,6 +91,12 @@ Cl.mediator = new Mediator();
9191
9292 // timeout is needed to wait until table row has class selected.
9393 setTimeout ( function ( ) {
94+ // Set classes for checked items
95+ actionSelect . each ( function ( no , el ) {
96+ if ( el . checked ) {
97+ el . closest ( '.list-item' ) . classList . add ( 'selected' ) ;
98+ }
99+ } ) ;
94100 if ( navigatorTable . hasClass ( 'selected' ) ) {
95101 actionList . addClass ( 'action-selected' ) ;
96102 }
You can’t perform that action at this time.
0 commit comments