Global package upgrade

This commit is contained in:
Kay0u 2020-06-03 23:02:55 +02:00
parent acfdf65237
commit 9215b98e42
No known key found for this signature in database
GPG key ID: AAFEEB16CFA2AE2D
2 changed files with 20 additions and 8 deletions

View file

@ -118,13 +118,13 @@
$.ajax({ $.ajax({
dataType: "json", dataType: "json",
url: 'https://'+ baseUrl +'/installed', url: 'https://'+ baseUrl +'/installed',
timeout: 3000 timeout: 3000,
}) success: function(data) {
.success(function(data) {
callback(data.installed); callback(data.installed);
}) },
.fail(function() { fail: function() {
callback(undefined); callback(undefined);
}
}); });
}, },
@ -319,7 +319,7 @@
$('#modal').modal('hide'); $('#modal').modal('hide');
// Render content // Render content
var rendered = this.render('views/'+ view +'.ms', data); var rendered = this.render('dist/views/'+ view +'.ms', data);
// Update content helper // Update content helper
var leSwap = function() { var leSwap = function() {

View file

@ -31,5 +31,17 @@
"gulp-uglify": "^3.0.2", "gulp-uglify": "^3.0.2",
"gulp-mustache": "^5.0.0" "gulp-mustache": "^5.0.0"
}, },
"dependencies": {
"bootstrap": "^3.3.7",
"fork-awesome": "^1.1.7",
"handlebars": "^4.7.6",
"handlebars-intl": "1.1.2",
"isotope-layout": "^3.0.6",
"jquery": "^3.5.1",
"js-cookie": "^2.2.1",
"jshint": "^2.11.1",
"sammy": "^0.7.6",
"source-code-pro": "^2.30.2",
"source-sans-pro": "^3.6.0"
} }
} }