meta/assets/config/js_groups.php

37 lines
697 B
PHP
Raw Normal View History

<?php
/**
* MiniMVC
*
* Convention-based micro-framework for PHP
*
* @package miniMVC
* @author Timothy J. Warren
* @copyright Copyright (c) 2011 - 2012
* @link https://github.com/aviat4ion/miniMVC
2012-07-12 10:31:08 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* This is the config array for javascript files to concatenate and minify
*/
2012-08-31 16:18:23 -04:00
return array(
/*=
For each group create an array like so
2012-07-12 10:31:08 -04:00
'my_group' => array(
'path/to/css/file1.css',
'path/to/css/file2.css'
),
*/
2012-09-12 10:36:43 -04:00
2012-08-31 16:18:23 -04:00
'js' => array(
2015-06-04 14:30:42 -04:00
'prism.js',
2012-09-12 10:36:43 -04:00
'kis-lite-dom.js',
2012-08-31 16:18:23 -04:00
'meta.js'
),
2012-09-12 12:57:41 -04:00
'wysiwyg' => array(
'tinyeditor.js',
),
2012-08-31 16:18:23 -04:00
);