File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ class JsonEditorPluginsAsset extends AssetBundle
2424 'editors/ckplugins/divarea.js ' ,
2525 ];
2626
27+ public $ css = [
28+ 'editors/filefly.less '
29+ ];
30+
2731 public $ depends = [
2832 JsonEditorAsset::class,
2933 SelectizeAsset::class,
Original file line number Diff line number Diff line change @@ -142,6 +142,12 @@ class FileflyEditor extends StringEditor {
142142 '</div>' ;
143143 }
144144 } ,
145+ onLoad : function ( ) {
146+ var selectize = this
147+ setTimeout ( function ( ) {
148+ selectize . open ( )
149+ } , 0 )
150+ } ,
145151 load : function ( query , callback ) {
146152 var selectize = this ;
147153 $ . ajax ( {
Original file line number Diff line number Diff line change 1+ .selectize-control.loading :after {
2+ content : ' loading...' ;
3+ position : absolute ;
4+ top : 50% ;
5+ right : 50px ;
6+ -webkit-transform : translate (0% , -60% );
7+ -ms-transform : translate (0% , -60% );
8+ transform : translate (0% , -60% );
9+ z-index : 1 ;
10+ }
You can’t perform that action at this time.
0 commit comments