backbone.viewmaster icon indicating copy to clipboard operation
backbone.viewmaster copied to clipboard

Few tested opinions on how to handle deeply nested views in Backbone.js focusing on modularity.

Results 6 backbone.viewmaster issues
Sort by recently updated
recently updated
newest added

🚨 You need to enable Continuous Integration on all branches of this repository. 🚨 To enable Greenkeeper, you need to make sure that a [commit status](https://help.github.com/articles/about-statuses/) is reported on all...

greenkeeper

Remove function is removing views in wrong order. As result, I was getting error from libraries like jquery-ui, when destroying resizable, draggable, widgets on view remove.

Hi currently there is only commonJS loading capability. My suggestion is to add UMD style module definition. ``` ;(function (root, factory) { 'use strict'; if (typeof exports === 'object') {...

I've run into a number of situations where I would like to appendView to the this.$el instead of some DOM element within this.$el. Is there no current way to do...

It would be nice to define regions the same way that Marionette does instead of always calling class names. I.e. regions: "header": ".header" "content": ".content"

Now `bubble` and `broadcast` methods can be considered as specialized versions of `trigger`, but in some cases they cause inconvenient event duplication (TODO: add examples). Considering to limit them only...

question