Update to jquery ui 1.10.3

Fix conflict & ui bugs

Remove debug
This commit is contained in:
Nicolas Le Goff
2013-06-19 11:04:01 +02:00
parent 25c05a3144
commit 764fa42f14
163 changed files with 18730 additions and 14192 deletions

View File

@@ -50,7 +50,7 @@ class module_console_systemTemplateGenerator extends Command
foreach ($tplDirs as $tplDir) {
$this->container['twig.loader.filesystem']->setPaths(array($tplDir));
$finder = new Finder();
foreach ($finder->files()->in(array($tplDir))->exclude('Mustache') as $file) {
foreach ($finder->files()->in(array($tplDir)) as $file) {
try {
$this->container['twig']->loadTemplate(str_replace($tplDir, '', $file->getPathname()));
$output->writeln('' . $file . '');