initial commit

This commit is contained in:
2019-01-11 22:16:01 +03:00
commit 24c5f2fcf6
312 changed files with 186972 additions and 0 deletions

17
static/vendor/common/common.js vendored Normal file
View File

@@ -0,0 +1,17 @@
// Tooltip and Popover
(function($) {
$('[data-toggle="tooltip"]').tooltip();
$('[data-toggle="popover"]').popover();
})(jQuery);
// Tabs
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
$(this).parents('.nav-tabs').find('.active').removeClass('active');
$(this).parents('.nav-pills').find('.active').removeClass('active');
$(this).addClass('active').parent().addClass('active');
});
// Bootstrap Datepicker
if (typeof($.fn.datepicker) != 'undefined') {
$.fn.bootstrapDP = $.fn.datepicker.noConflict();
}