mirror of https://gitee.com/bigwinds/arangodb
grunt package json, ui
This commit is contained in:
parent
fa1f1e3485
commit
d42f7ffaaf
|
@ -7340,6 +7340,29 @@ var hljs=new function(){function l(o){return o.replace(/&/gm,"&").replace(/<
|
|||
};
|
||||
},
|
||||
|
||||
setCheckboxStatus: function(id) {
|
||||
$.each($(id).find('ul').find('li'), function(key, element) {
|
||||
if (!$(element).hasClass("nav-header")) {
|
||||
if ($(element).find('input').attr('checked')) {
|
||||
if ($(element).find('i').hasClass('css-round-label')) {
|
||||
$(element).find('i').addClass('fa-dot-circle-o');
|
||||
}
|
||||
else {
|
||||
$(element).find('i').addClass('fa-check-circle-o');
|
||||
}
|
||||
}
|
||||
else {
|
||||
if ($(element).find('i').hasClass('css-round-label')) {
|
||||
$(element).find('i').addClass('fa-circle-o');
|
||||
}
|
||||
else {
|
||||
$(element).find('i').addClass('fa-circle-o');
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
calculateCenterDivHeight: function() {
|
||||
var navigation = $('.navbar').height();
|
||||
var footer = $('.footer').height();
|
||||
|
|
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -9,7 +9,6 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"grunt": "^0.4.5",
|
||||
"grunt-cli": "^0.1.13",
|
||||
"grunt-concat-in-order": "^0.1.6",
|
||||
"grunt-contrib-compress": "^0.13.0",
|
||||
"grunt-contrib-concat": "^0.5.1",
|
||||
|
|
Loading…
Reference in New Issue