Issue #1149866 by jessebeach, effulgentsia, ethanw, corbacho, et al: Added Backbone.js and Underscore.js to core.
parent
555de13a01
commit
885f59b225
|
@ -27,6 +27,7 @@ Drupal 8.0, xxxx-xx-xx (development version)
|
|||
information.
|
||||
* Yaml - Parser for YAML files.
|
||||
- Included the Assetic asset management framework for PHP.
|
||||
- Included Backbone.js and Underscore.js JavaScript frameworks.
|
||||
- Support added for making HTTP requests through a proxy server.
|
||||
- Removed modules from core.
|
||||
* The following modules have been removed from core, because contributed
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1848,6 +1848,29 @@ function system_library_info() {
|
|||
),
|
||||
);
|
||||
|
||||
// Underscore
|
||||
$libraries['underscore'] = array(
|
||||
'title' => 'Underscore.js',
|
||||
'website' => 'http://underscorejs.org/',
|
||||
'version' => '1.4.0',
|
||||
'js' => array(
|
||||
'core/misc/underscore/underscore.js' => array('group' => JS_LIBRARY),
|
||||
),
|
||||
);
|
||||
|
||||
// Backbone
|
||||
$libraries['backbone'] = array(
|
||||
'title' => 'Backbone.js',
|
||||
'website' => 'http://backbonejs.org/',
|
||||
'version' => '0.9.2',
|
||||
'js' => array(
|
||||
'core/misc/backbone/backbone.js' => array('group' => JS_LIBRARY),
|
||||
),
|
||||
'dependencies' => array(
|
||||
array('system', 'underscore'),
|
||||
),
|
||||
);
|
||||
|
||||
// Cookie.
|
||||
$libraries['jquery.cookie'] = array(
|
||||
'title' => 'Cookie',
|
||||
|
|
Loading…
Reference in New Issue