mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 13:33:14 +00:00

PHRAS-846 - fix admin log view PHRAS-843 - fix action icons added white skin misc fix on skin color handling replace image icons by fonts icons
23 lines
480 B
PHP
23 lines
480 B
PHP
<?php
|
|
|
|
/**
|
|
* Groups configuration for default Minify implementation
|
|
* @package Minify
|
|
*/
|
|
/**
|
|
* You may wish to use the Minify URI Builder app to suggest
|
|
* changes. http://yourdomain/min/builder/
|
|
* */
|
|
$groups = [
|
|
'authentication' => [
|
|
'//assets/modernizr/modernizr.js',
|
|
'//assets/requirejs/require.js',
|
|
'//scripts/apps/login/home/config.js'
|
|
],
|
|
'modalBox' => [
|
|
'//assets/jquery.ui/i18n/jquery-ui-i18n.js'
|
|
]
|
|
];
|
|
|
|
return $groups;
|