Skip to content

Commit

Permalink
Fixed default configuration paths to work out-of-the-box.
Browse files Browse the repository at this point in the history
  • Loading branch information
lifo101 committed Sep 23, 2015
1 parent 8b416e3 commit ff70b8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';

/**
Expand Down

0 comments on commit ff70b8a

Please sign in to comment.