1
0
mirror of https://github.com/lrsjng/h5ai.git synced 2025-08-09 07:16:40 +02:00

Clean code.

This commit is contained in:
Lars Jung
2014-09-13 17:54:31 +02:00
parent d9ff0c3cf4
commit 088a0b0839
2 changed files with 2 additions and 3 deletions

View File

@@ -16,8 +16,8 @@ modulejs.define('core/resource', ['_', '$', 'config', 'core/settings'], function
function icon(id) { function icon(id) {
var baseId = id.split('-')[0], var baseId = id.split('-')[0];
href = config.theme[id] || config.theme[baseId]; var href = config.theme[id] || config.theme[baseId];
if (href) { if (href) {
return themesHref + href; return themesHref + href;

View File

@@ -1,6 +1,5 @@
modulejs.define('core/server', ['$', '_', 'config', 'core/location'], function ($, _, config, location) { modulejs.define('core/server', ['$', '_', 'config', 'core/location'], function ($, _, config, location) {
var hasApi = config.setup.API === true; var hasApi = config.setup.API === true;