Conditions | 1 |
Paths | 1 |
Total Lines | 22 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | ( function( $ ) { |
||
2 | |||
3 | $( document ).ready(function() { |
||
4 | $( '#search_id-search-date-input' ).datepicker({ |
||
5 | changeMonth: true, |
||
6 | changeYear: true, |
||
7 | dateFormat: 'yy-mm-dd' |
||
8 | }); |
||
9 | }); |
||
10 | |||
11 | var tabsInsertedEvent = 'tabs_elem_inserted'; |
||
12 | |||
13 | insertionQ( '#tabs' ).every(function ( element ) { |
||
14 | $( element ).trigger( tabsInsertedEvent ) |
||
15 | }); |
||
16 | |||
17 | $( document ).on( tabsInsertedEvent, function() { |
||
18 | $( '#tabs' ).tabs(); |
||
19 | }); |
||
20 | |||
21 | |||
22 | })( jQuery ); |