From ff70b8a0435ad360dcb6194b65cba18986298ae9 Mon Sep 17 00:00:00 2001 From: Jason Morriss Date: Wed, 23 Sep 2015 07:33:03 -0400 Subject: [PATCH] Fixed default configuration paths to work out-of-the-box. --- DependencyInjection/Configuration.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 610f7e7..439baf6 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -7,10 +7,10 @@ class Configuration implements ConfigurationInterface { - const DEFAULT_BSJS_FILE = '%kernel.root_dir%/../src/Lifo/TypeaheadBundle/Resources/public/js/bootstrap-typeahead.js'; - const DEFAULT_JS_FILE = '%kernel.root_dir%/../src/Lifo/TypeaheadBundle/Resources/public/js/typeaheadbundle.js'; + const DEFAULT_BSJS_FILE = '%kernel.root_dir%/../vendor/lifo/typeahead-bundle/Lifo/TypeaheadBundle/Resources/public/js/bootstrap-typeahead.js'; + const DEFAULT_JS_FILE = '%kernel.root_dir%/../vendor/lifo/typeahead-bundle/Lifo/TypeaheadBundle/Resources/public/js/typeaheadbundle.js'; const DEFAULT_JS_OUTPUT = 'js/lifo_typeahead.js'; - const DEFAULT_CSS_FILE = '%kernel.root_dir%/../src/Lifo/TypeaheadBundle/Resources/public/css/typeaheadbundle.css'; + const DEFAULT_CSS_FILE = '%kernel.root_dir%/../vendor/lifo/typeahead-bundle/Lifo/TypeaheadBundle/Resources/public/css/typeaheadbundle.css'; const DEFAULT_CSS_OUTPUT = 'css/lifo_typeahead.css'; /**