2011-07-06 19:31:40 -04:00
|
|
|
<?php
|
2012-04-26 10:11:15 -04:00
|
|
|
/**
|
|
|
|
* Easy Min
|
|
|
|
*
|
|
|
|
* Simple minification for better website performance
|
|
|
|
*
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2012
|
|
|
|
* @link https://github.com/aviat4ion/Easy-Min
|
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the config array for javascript files to concatenate and minify
|
|
|
|
*/
|
|
|
|
return array(
|
|
|
|
/*
|
|
|
|
For each group create an array like so
|
|
|
|
|
|
|
|
'my_group' => array(
|
|
|
|
'path/to/js/file1.js',
|
|
|
|
'path/to/js/file2.js'
|
|
|
|
),
|
|
|
|
*/
|
|
|
|
);
|
|
|
|
|
|
|
|
// End of js_groups.php
|