MenuModel.js 292 B

1234567891011121314
  1. /**
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/2815083
  5. * @preserve
  6. **/
  7. (function (Backbone, Drupal) {
  8. Drupal.toolbar.MenuModel = Backbone.Model.extend({
  9. defaults: {
  10. subtrees: {}
  11. }
  12. });
  13. })(Backbone, Drupal);