Skip to content
Snippets Groups Projects

Issue #3204015: Replace Toolbar BackboneJS usage with VanillaJS equivalent

Open Issue #3204015: Replace Toolbar BackboneJS usage with VanillaJS equivalent
14 unresolved threads
14 unresolved threads
10 files
+ 261
46
Compare changes
  • Side-by-side
  • Inline
Files
10
/**
/**
* @file
* A Backbone view for the body element.
*/
@@ -23,7 +23,7 @@
},
isToolbarFixed() {
console.log('isToolbarFixed() in BodyVisualView.es6');
console.log('backbone: isToolbarFixed() in BodyVisualView.es6');
// When the toolbar is fixed, it will not scroll with page scrolling.
const isViewportOverflowConstrained = this.model.get(
'isViewportOverflowConstrained',
@@ -38,7 +38,7 @@
* {@inheritdoc}
*/
render() {
console.log('render() in BodyVisualView.es6');
console.log('backbone: render() in BodyVisualView.es6');
$('body')
// Toggle the toolbar-tray-open class on the body element. The class is
// applied when a toolbar tray is active. Padding might be applied to
Loading