Clean messy commenting

pull/71/head
christianesperar 2016-04-08 20:39:32 +08:00
parent f912572af8
commit 277a868ae4
1 changed files with 23 additions and 37 deletions

View File

@ -1,10 +1,10 @@
/* /**
* To change this license header, choose License Headers in Project Properties. * To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates * To change this template file, choose Tools | Templates
* and open the template in the editor. * and open the template in the editor.
*/ */
/** ****** left menu *********************** **/ // Sidebar
$(function () { $(function () {
$('#sidebar-menu li ul').slideUp(); $('#sidebar-menu li ul').slideUp();
$('#sidebar-menu li').removeClass('active'); $('#sidebar-menu li').removeClass('active');
@ -48,7 +48,7 @@ $(function () {
}); });
}); });
/* Sidebar Menu active class */ // Sidebar Menu active class
$(function () { $(function () {
var url = window.location; var url = window.location;
$('#sidebar-menu a[href="' + url + '"]').parent('li').addClass('current-page'); $('#sidebar-menu a[href="' + url + '"]').parent('li').addClass('current-page');
@ -57,27 +57,24 @@ $(function () {
}).parent('li').addClass('current-page').parent('ul').slideDown().parent().addClass('active'); }).parent('li').addClass('current-page').parent('ul').slideDown().parent().addClass('active');
}); });
/** ****** /left menu *********************** **/
/** ****** right_col height flexible *********************** **/ // Right column height
$(".right_col").css("min-height", $(window).height()); $(".right_col").css("min-height", $(window).height());
$(window).resize(function () { $(window).resize(function () {
$(".right_col").css("min-height", $(window).height()); $(".right_col").css("min-height", $(window).height());
}); });
/** ****** /right_col height flexible *********************** **/
// Tooltip
/** ****** tooltip *********************** **/
$(function () { $(function () {
$('[data-toggle="tooltip"]').tooltip() $('[data-toggle="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
} }
/** ****** /progressbar *********************** **/
/** ****** switchery *********************** **/ // Switchery
if ($(".js-switch")[0]) { if ($(".js-switch")[0]) {
var elems = Array.prototype.slice.call(document.querySelectorAll('.js-switch')); var elems = Array.prototype.slice.call(document.querySelectorAll('.js-switch'));
elems.forEach(function (html) { elems.forEach(function (html) {
@ -86,8 +83,7 @@ if ($(".js-switch")[0]) {
}); });
}); });
} }
/** ****** /switcher *********************** **/
/** ****** collapse panel *********************** **/
// Close ibox function // Close ibox function
$('.close-link').click(function () { $('.close-link').click(function () {
var content = $(this).closest('div.x_panel'); var content = $(this).closest('div.x_panel');
@ -107,8 +103,8 @@ $('.collapse-link').click(function () {
x_panel.resize(); x_panel.resize();
}, 50); }, 50);
}); });
/** ****** /collapse panel *********************** **/
/** ****** iswitch *********************** **/ // iCheck
if ($("input.flat")[0]) { if ($("input.flat")[0]) {
$(document).ready(function () { $(document).ready(function () {
$('input.flat').iCheck({ $('input.flat').iCheck({
@ -117,9 +113,8 @@ if ($("input.flat")[0]) {
}); });
}); });
} }
/** ****** /iswitch *********************** **/
/** ****** star rating *********************** **/ // Starrr
// Starrr plugin (https://github.com/dobtco/starrr)
var __slice = [].slice; var __slice = [].slice;
(function ($, window) { (function ($, window) {
@ -142,7 +137,7 @@ var __slice = [].slice;
_ref = this.defaults; _ref = this.defaults;
for (i in _ref) { for (i in _ref) {
_ = _ref[i]; _ = _ref[i];
if (this.$el.data(i) != null) { if (this.$el.data(i) !== null) {
this.options[i] = this.$el.data(i); this.options[i] = this.$el.data(i);
} }
} }
@ -237,8 +232,8 @@ $(document).ready(function () {
}); });
}); });
/** ****** /star rating *********************** **/
/** ****** table *********************** **/ // Table
$('table input').on('ifChecked', function () { $('table input').on('ifChecked', function () {
check_state = ''; check_state = '';
$(this).parent().parent().parent().addClass('selected'); $(this).parent().parent().parent().addClass('selected');
@ -287,15 +282,8 @@ function countChecked() {
$('.bulk-actions').hide(); $('.bulk-actions').hide();
} }
} }
/** ****** /table *********************** **/
/** ****** *********************** **/
/** ****** *********************** **/
/** ****** *********************** **/
/** ****** *********************** **/
/** ****** *********************** **/
/** ****** *********************** **/
/** ****** Accordion *********************** **/
// Accordion
$(function () { $(function () {
$(".expand").on("click", function () { $(".expand").on("click", function () {
$(this).next().slideToggle(200); $(this).next().slideToggle(200);
@ -309,9 +297,8 @@ $(function () {
}); });
}); });
/** ****** Accordion *********************** **/
/** ****** NProgress *********************** **/ // NProgress
if (typeof NProgress != 'undefined') { if (typeof NProgress != 'undefined') {
$(document).ready(function () { $(document).ready(function () {
NProgress.start(); NProgress.start();
@ -320,5 +307,4 @@ if (typeof NProgress != 'undefined') {
$(window).load(function () { $(window).load(function () {
NProgress.done(); NProgress.done();
}); });
} }
/** ****** NProgress *********************** **/