meta/assets/config/js_groups.php

37 lines
697 B
PHP
Executable File

<?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
* @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/css/file1.css',
'path/to/css/file2.css'
),
*/
'js' => array(
'prism.js',
'kis-lite-dom.js',
'meta.js'
),
'wysiwyg' => array(
'tinyeditor.js',
),
);