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) {
var baseId = id.split('-')[0],
href = config.theme[id] || config.theme[baseId];
var baseId = id.split('-')[0];
var href = config.theme[id] || config.theme[baseId];
if (href) {
return themesHref + href;

View file

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