5 $('.filter').change(function() {
6 document.filter[this.name].value = this.value;
7 document.filter.submit();
10 $('.check-filter').change(function() {
11 document.filter[this.name].value = this.checked ? '1' : '';
12 document.filter.submit();
15 $('.text-filter').each(function() {
17 $(inp).parent().submit(function() {
18 document.filter[inp.name].value = inp.value;
19 document.filter.submit();
25 $('.autoslug-source').change(function() {
26 $('.autoslug').attr('value', slugify(this.value));
30 var nowTemp = new Date();
31 var now = new Date(nowTemp.getFullYear(), nowTemp.getMonth(), nowTemp.getDate(), 0, 0, 0, 0);
33 $('.datepicker-field').each(function() {
34 var checkout = $(this).datepicker({
37 onRender: function(date) {
38 return date.valueOf() < now.valueOf() ? 'disabled' : '';
40 }).on('changeDate', function(ev) {
42 }).data('datepicker');
46 $("select").change(function() {
47 var helpdiv = $(this).next();
48 if (helpdiv.hasClass('help-text')) {
49 var helptext = $("option:selected", this).attr('data-help');
50 helpdiv.html($("option:selected", this).attr('data-help') || '');
60 var first_reset = true;
62 if (start) $(start).popover('hide');
64 var all_tutorial = $('[data-toggle="tutorial"]');
67 return parseInt($(a).attr('data-tutorial'));
69 tutorial = $.makeArray(all_tutorial.sort(
70 function(a, b) {return sortKey(a) < sortKey(b) ? -1 : 1}
73 console.log($(tutorial[0]).data('popover'));
74 console.log($(tutorial[16]).data('popover'));
76 $.each(tutorial, function(i, e) {
77 var but = (i < tutorial.length - 1) ? '>>' : 'OK';
79 title: '<a class="btn btn-default tutorial-off" href="#-" id="tutoff'+i+'" style="float:right; padding:0 8px 4px 8px; position:relative; top:-6px; right:-10px;">×</a>Tutorial',
82 template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div><div><a style="float:right" class="btn btn-default tutorial-next" href="#-" id="nt'+i+'">' + but + '</a></div></div>'
87 all_tutorial.popover('enable');
92 sessionStorage.setItem("tutorial", "on");
94 var $tutModal = $('#tutModal');
95 if($tutModal.length === 0) {
98 $tutModal.modal('show');
103 $(this).popover('hide');
104 if (start) $(start).popover('hide');
106 sessionStorage.removeItem("tutorial");
107 $('[data-toggle="tutorial"]').popover('disable');
112 $(start).popover('hide').popover('disable');
114 if (tutorial.length) {
115 start = tutorial.shift();
116 $(start).popover('show');
123 $('#tutModal').on('hidden.bs.modal', tut);
125 var $tuton = $("#tuton");
126 if (sessionStorage.getItem("tutorial") == "on" && $tuton.length == 0) {
130 $tuton.on('click', tuton);
131 $(document).on('click', '.tutorial-off', tutoff);
132 $(document).on('click', '.tutorial-next', tut);