tims-todo/application/config/min_groupsConfig.php

37 lines
573 B
PHP
Raw Normal View History

2014-08-08 15:41:59 -04:00
<?php
/**
* Groups configuration for default Minify implementation
* @package Minify
*/
2016-12-29 13:56:30 -05:00
2014-08-08 15:41:59 -04:00
$root = "//";
return array(
2016-12-29 13:56:30 -05:00
2014-08-08 15:41:59 -04:00
/*-----
2016-12-29 13:56:30 -05:00
Css
2014-08-08 15:41:59 -04:00
-----*/
2016-12-29 13:56:30 -05:00
2014-08-08 15:41:59 -04:00
'css' => array(
$root. 'fonts/Puritan/stylesheet.css',
$root. 'css/todo.css',
$root. 'css/message.css',
$root. 'js/CLEditor/jquery.cleditor.css',
$root. 'css/jquery-ui.min.css'
),
2016-12-29 13:56:30 -05:00
2014-08-08 15:41:59 -04:00
/*-----
2016-12-29 13:56:30 -05:00
Javascript
2014-08-08 15:41:59 -04:00
-----*/
'js' => array(
$root. 'js/CLEditor/jquery.cleditor.js',
$root. 'js/CLEditor/jquery.cleditor.xhtml.js',
$root. 'js/todo.js',
),
2016-12-29 13:56:30 -05:00
2014-08-08 15:41:59 -04:00
'js_mobile' => array(
$root. 'js/todo.js',
),
2016-12-29 13:56:30 -05:00
);