Update to Drupal 8.0.0-beta15. For more information, see: https://www.drupal.org/node/2563023
This commit is contained in:
parent
2720a9ec4b
commit
f3791f1da3
1898 changed files with 54300 additions and 11481 deletions
|
@ -17,6 +17,7 @@
|
|||
* @augments Backbone.View
|
||||
*
|
||||
* @param {object} options
|
||||
* Options for the view.
|
||||
*/
|
||||
initialize: function (options) {
|
||||
this.options = options;
|
||||
|
|
|
@ -10,7 +10,10 @@
|
|||
Drupal.contextual.RegionView = Backbone.View.extend(/** @lends Drupal.contextual.RegionView# */{
|
||||
|
||||
/**
|
||||
* Events for the Backbone view.
|
||||
*
|
||||
* @return {object}
|
||||
* A mapping of events to be used in the view.
|
||||
*/
|
||||
events: function () {
|
||||
var mapping = {
|
||||
|
@ -41,6 +44,7 @@
|
|||
* @inheritdoc
|
||||
*
|
||||
* @return {Drupal.contextual.RegionView}
|
||||
* The current contextual region view.
|
||||
*/
|
||||
render: function () {
|
||||
this.$el.toggleClass('focus', this.model.get('hasFocus'));
|
||||
|
|
|
@ -10,7 +10,10 @@
|
|||
Drupal.contextual.VisualView = Backbone.View.extend(/** @lends Drupal.contextual.VisualView# */{
|
||||
|
||||
/**
|
||||
* Events for the Backbone view.
|
||||
*
|
||||
* @return {object}
|
||||
* A mapping of events to be used in the view.
|
||||
*/
|
||||
events: function () {
|
||||
// Prevents delay and simulated mouse events.
|
||||
|
@ -46,6 +49,7 @@
|
|||
* @inheritdoc
|
||||
*
|
||||
* @return {Drupal.contextual.VisualView}
|
||||
* The current contextual visual view.
|
||||
*/
|
||||
render: function () {
|
||||
var isOpen = this.model.get('isOpen');
|
||||
|
|
Reference in a new issue