From 9c1f6e12c1461ca3eec299985d6fa4bd29da2f3f Mon Sep 17 00:00:00 2001 From: Simon Sprankel Date: Tue, 24 Jun 2014 09:30:03 +0200 Subject: [PATCH] Updated Default JQuery Path The defaut jQuery path should link to the current version of jQuery, which is `1.11.1` and not `1.11.0`. Otherwise, I get the following error when I do a `php app/console assetic:dump`: [RuntimeException] The source file "/var/www/roombook/app/../vendor/jquery/jquery/jquery-1.11.0.js" does not exist. --- DependencyInjection/Configuration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index bac5d5a..bc1fcfd 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -44,7 +44,7 @@ class Configuration implements ConfigurationInterface const DEFAULT_BOOTSTRAP_TEMPLATE_SASS = 'BraincraftedBootstrapBundle:Bootstrap:bootstrap.scss.twig'; /** @var string */ - const DEFAULT_JQUERY_PATH = '%kernel.root_dir%/../vendor/jquery/jquery/jquery-1.11.0.js'; + const DEFAULT_JQUERY_PATH = '%kernel.root_dir%/../vendor/jquery/jquery/jquery-1.11.1.js'; /** @var string */ const DEFAULT_FONTS_DIR = '%kernel.root_dir%/../web/fonts';