Added upgrade process

This commit is contained in:
Chris
2018-02-05 15:02:18 +00:00
parent ba273ffbcf
commit c90c08b904
8 changed files with 55 additions and 3 deletions

2
public/js/app.js vendored
View File

@@ -46,6 +46,7 @@ $.when( $.ready ).then(function() {
app.toggleClass('header');
if(active) {
$('.add-item').hide();
$('.item-edit').hide();
$('#app').removeClass('sidebar');
$("#sortable").sortable("disable")
} else {
@@ -54,6 +55,7 @@ $.when( $.ready ).then(function() {
function()
{
$('.add-item').fadeIn();
$('.item-edit').fadeIn();
}, 350);
}