File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44* .swp
55.bundle
66.idea /
7+ .vscode /
78.rvmrc
89.sass-cache
910.yardoc
Original file line number Diff line number Diff line change 11import jQuery from "jquery" ;
22import "jquery-ui/ui/widget" ;
33import I18n from "./i18n" ;
4-
54( function ( $ ) {
65 $ . widget ( "ra.filteringMultiselect" , {
76 _cache : { } ,
@@ -112,15 +111,11 @@ import I18n from "./i18n";
112111 }
113112 if ( this . options . sortable ) {
114113 this . up = $ (
115- '<a href="#" class="fas fa-chevron-circle-up ra-multiselect-item-up">' +
116- this . options . regional . up +
117- "</a>"
118- ) ;
114+ '<a href="#" class="fas fa-chevron-circle-up ra-multiselect-item-up"></a>'
115+ ) . attr ( "title" , this . options . regional . up ) ;
119116 this . down = $ (
120- '<a href="#" class="fas fa-chevron-circle-down ra-multiselect-item-down">' +
121- this . options . regional . down +
122- "</a>"
123- ) ;
117+ '<a href="#" class="fas fa-chevron-circle-down ra-multiselect-item-down"></a>'
118+ ) . attr ( "title" , this . options . regional . down ) ;
124119 columns . center . append ( this . up ) . append ( this . down ) ;
125120 }
126121
You can’t perform that action at this time.
0 commit comments