Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Example: Make the edit dialog the same size as the elFinder node To define with `handlers.dialogopen: [Fn]` of the client setting or `elFinderInstance.bind('dialogopen', [Fn])`. ```javascript handlers : { dialogopen : function(e, fm) { var dialog = e.data.dialog, elfNode; if (dialog.hasClass('elfinder-dialog-edit')) { elfNode = fm.getUI(); dialog.css({ top: 0, left: 0, width: elfNode.width(), height: elfNode.height() }).trigger('resize', { init : true }); } } } ```
- Loading branch information