[refs #921] fix show-hide filter
This commit is contained in:
parent
fef0ed2534
commit
1c4ec45639
|
@ -101,15 +101,4 @@ $(document).ready(function() {
|
|||
dateFormat: 'dd/mm/yy',
|
||||
showButtonPanel: true
|
||||
});
|
||||
|
||||
$(".switch").toggle(
|
||||
function () {
|
||||
$(".filter").hide("slow");
|
||||
$(".switch a").text("#{t 'layout.show'}");
|
||||
},
|
||||
function () {
|
||||
$(".filter").show("slow");
|
||||
$(".switch a").text("#{t 'layout.hide'}");
|
||||
}
|
||||
);
|
||||
});
|
||||
|
|
|
@ -73,6 +73,16 @@
|
|||
.switch
|
||||
%a{:href => "#"}= t 'layout.hide'
|
||||
:javascript
|
||||
$(".switch").toggle(
|
||||
function () {
|
||||
$(".filter").hide("slow");
|
||||
$(".switch a").text("#{t 'layout.show'}");
|
||||
},
|
||||
function () {
|
||||
$(".filter").show("slow");
|
||||
$(".switch a").text("#{t 'layout.hide'}");
|
||||
}
|
||||
);
|
||||
#{if I18n.locale == :ru
|
||||
"$.datepicker.regional['ru'] = {
|
||||
closeText: 'Закрыть',
|
||||
|
|
Loading…
Reference in New Issue