mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Global package upgrade
This commit is contained in:
parent
d7e7ba30ba
commit
f8504ea55b
2 changed files with 20 additions and 8 deletions
|
@ -124,13 +124,13 @@
|
|||
$.ajax({
|
||||
dataType: "json",
|
||||
url: 'https://'+ baseUrl +'/installed',
|
||||
timeout: 3000
|
||||
})
|
||||
.success(function(data) {
|
||||
callback(data.installed);
|
||||
})
|
||||
.fail(function() {
|
||||
callback(undefined);
|
||||
timeout: 3000,
|
||||
success: function(data) {
|
||||
callback(data.installed);
|
||||
},
|
||||
fail: function() {
|
||||
callback(undefined);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
|
@ -325,7 +325,7 @@
|
|||
$('#modal').modal('hide');
|
||||
|
||||
// Render content
|
||||
var rendered = this.render('views/' + view + '.ms?version=' + ynh_assets_version, data);
|
||||
var rendered = this.render('dist/views/' + view + '.ms?version=' + ynh_assets_version, data);
|
||||
|
||||
// Update content helper
|
||||
var leSwap = function() {
|
||||
|
|
|
@ -31,5 +31,17 @@
|
|||
"gulp-uglify": "^3.0.2",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue