mirror of https://github.com/ColorlibHQ/gentelella
commit
a9ecf4e24d
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
|
||||||
|
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
|
||||||
|
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
|
||||||
|
<group/>
|
||||||
|
</open-files>
|
||||||
|
</project-private>
|
|
@ -11,7 +11,6 @@ body.nav-sm .container.body .right_col {
|
||||||
margin-left: 70px;
|
margin-left: 70px;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
.right_col{min-height: 1000px;}
|
|
||||||
body.nav-sm .navbar.nav_title {
|
body.nav-sm .navbar.nav_title {
|
||||||
width: 70px;
|
width: 70px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,15 +60,21 @@ $(function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
/** ****** /left menu *********************** **/
|
/** ****** /left menu *********************** **/
|
||||||
|
/** ****** right_col height flexible *********************** **/
|
||||||
|
$(".right_col").css("min-height", $(window).height());
|
||||||
|
$(window).resize(function () {
|
||||||
|
$(".right_col").css("min-height", $(window).height());
|
||||||
|
});
|
||||||
|
/** ****** /right_col height flexible *********************** **/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/** ****** tooltip *********************** **/
|
/** ****** tooltip *********************** **/
|
||||||
$(function () {
|
$(function () {
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
$('[data-toggle="tooltip"]').tooltip()
|
||||||
})
|
})
|
||||||
/** ****** /tooltip *********************** **/
|
/** ****** /tooltip *********************** **/
|
||||||
/** ****** progressbar *********************** **/
|
/** ****** progressbar *********************** **/
|
||||||
if ($(".progress .progress-bar")[0]) {
|
if ($(".progress .progress-bar")[0]) {
|
||||||
$('.progress .progress-bar').progressbar(); // bootstrap 3
|
$('.progress .progress-bar').progressbar(); // bootstrap 3
|
||||||
}
|
}
|
||||||
|
@ -125,12 +131,13 @@ var __slice = [].slice;
|
||||||
Starrr.prototype.defaults = {
|
Starrr.prototype.defaults = {
|
||||||
rating: void 0,
|
rating: void 0,
|
||||||
numStars: 5,
|
numStars: 5,
|
||||||
change: function (e, value) {}
|
change: function (e, value) {
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function Starrr($el, options) {
|
function Starrr($el, options) {
|
||||||
var i, _, _ref,
|
var i, _, _ref,
|
||||||
_this = this;
|
_this = this;
|
||||||
|
|
||||||
this.options = $.extend({}, this.defaults, options);
|
this.options = $.extend({}, this.defaults, options);
|
||||||
this.$el = $el;
|
this.$el = $el;
|
||||||
|
@ -266,30 +273,30 @@ $('.bulk_action input#check-all').on('ifUnchecked', function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
function countChecked() {
|
function countChecked() {
|
||||||
if (check_state == 'check_all') {
|
if (check_state == 'check_all') {
|
||||||
$(".bulk_action input[name='table_records']").iCheck('check');
|
$(".bulk_action input[name='table_records']").iCheck('check');
|
||||||
}
|
|
||||||
if (check_state == 'uncheck_all') {
|
|
||||||
$(".bulk_action input[name='table_records']").iCheck('uncheck');
|
|
||||||
}
|
|
||||||
var n = $(".bulk_action input[name='table_records']:checked").length;
|
|
||||||
if (n > 0) {
|
|
||||||
$('.column-title').hide();
|
|
||||||
$('.bulk-actions').show();
|
|
||||||
$('.action-cnt').html(n + ' Records Selected');
|
|
||||||
} else {
|
|
||||||
$('.column-title').show();
|
|
||||||
$('.bulk-actions').hide();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
/** ****** /table *********************** **/
|
if (check_state == 'uncheck_all') {
|
||||||
/** ****** *********************** **/
|
$(".bulk_action input[name='table_records']").iCheck('uncheck');
|
||||||
/** ****** *********************** **/
|
}
|
||||||
/** ****** *********************** **/
|
var n = $(".bulk_action input[name='table_records']:checked").length;
|
||||||
/** ****** *********************** **/
|
if (n > 0) {
|
||||||
/** ****** *********************** **/
|
$('.column-title').hide();
|
||||||
/** ****** *********************** **/
|
$('.bulk-actions').show();
|
||||||
/** ****** Accordion *********************** **/
|
$('.action-cnt').html(n + ' Records Selected');
|
||||||
|
} else {
|
||||||
|
$('.column-title').show();
|
||||||
|
$('.bulk-actions').hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/** ****** /table *********************** **/
|
||||||
|
/** ****** *********************** **/
|
||||||
|
/** ****** *********************** **/
|
||||||
|
/** ****** *********************** **/
|
||||||
|
/** ****** *********************** **/
|
||||||
|
/** ****** *********************** **/
|
||||||
|
/** ****** *********************** **/
|
||||||
|
/** ****** Accordion *********************** **/
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
$(".expand").on("click", function () {
|
$(".expand").on("click", function () {
|
||||||
|
@ -307,11 +314,11 @@ $(function () {
|
||||||
/** ****** Accordion *********************** **/
|
/** ****** Accordion *********************** **/
|
||||||
/** ****** scrollview *********************** **/
|
/** ****** scrollview *********************** **/
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
|
|
||||||
$(".scroll-view").niceScroll({
|
$(".scroll-view").niceScroll({
|
||||||
touchbehavior: true,
|
touchbehavior: true,
|
||||||
cursorcolor: "rgba(42, 63, 84, 0.35)"
|
cursorcolor: "rgba(42, 63, 84, 0.35)"
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
/** ****** /scrollview *********************** **/
|
/** ****** /scrollview *********************** **/
|
Loading…
Reference in New Issue