2015-06-24 16:01:35 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-16 11:40:01 -05:00
|
|
|
* Hummingbird Anime Client
|
2015-06-24 16:01:35 -04:00
|
|
|
*
|
2015-11-16 11:40:01 -05:00
|
|
|
* An API client for Hummingbird to manage anime and manga watch lists
|
2015-06-24 16:01:35 -04:00
|
|
|
*
|
2015-11-16 11:40:01 -05:00
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren
|
2016-01-04 16:58:33 -05:00
|
|
|
* @copyright Copyright (c) 2015 - 2016
|
2015-11-16 11:40:01 -05:00
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
|
|
|
* @license MIT
|
2015-06-24 16:01:35 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the config array for javascript files to concatenate and minify
|
|
|
|
*/
|
2016-02-02 11:34:03 -05:00
|
|
|
return [
|
|
|
|
'base' => [
|
2016-02-09 20:57:40 -05:00
|
|
|
'base/classList.js',
|
2016-02-09 20:07:01 -05:00
|
|
|
'base/AnimeClient.js',
|
2016-02-02 11:34:03 -05:00
|
|
|
],
|
|
|
|
'event' => [
|
|
|
|
'base/events.js',
|
|
|
|
],
|
|
|
|
'table' => [
|
|
|
|
'base/sort_tables.js',
|
|
|
|
],
|
|
|
|
'table_edit' => [
|
|
|
|
'sort_tables.js',
|
|
|
|
'anime_edit.js',
|
|
|
|
'manga_edit.js',
|
|
|
|
],
|
|
|
|
'edit' => [
|
|
|
|
'anime_edit.js',
|
|
|
|
'manga_edit.js',
|
|
|
|
],
|
|
|
|
'anime_collection' => [
|
|
|
|
'lib/mustache.js',
|
|
|
|
'anime_collection.js',
|
|
|
|
],
|
|
|
|
'manga_collection' => [
|
|
|
|
'lib/mustache.js',
|
|
|
|
'manga_collection.js',
|
|
|
|
],
|
2015-06-24 16:01:35 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
// End of js_groups.php
|