Luiz Américo
Luiz Américo
Implements the reset option for `model.set`. Fixes #3253 #4098 When reset flag is passed as a truthy value to model.set, the properties that exist in model.attributes but not in the...
Tested with backbone 1.1.2 In the example below, `m.get('test')` returns undefined http://jsfiddle.net/N4zh4/1/ if i create the model with `var m = new MyModel({x: 2});` it works ``` var MyModel =...
Thanks for your work. Just like to inform that i created a webpack loader for incremental-bars: https://github.com/blikblum/incremental-bars-loader An actual example of usage can be found at https://github.com/blikblum/marionette.renderers/tree/master/examples/idom-handlebars
Use babel-preset-env instead of babel-preset-2015, which is not being maintained anymore Excludes the typeof transformation that only adds extra code in hot path without any benefits even for older browsers
Do not attach Radio instance unconditionally to Backbone. This is done only when using the umd build in a script tag. This change allows to remove noConflict Follows recent change...
Following es export ( #275 ) there's the possibility to use named exports instead of exporting the whole API in the default export. As already [cited](https://github.com/marionettejs/backbone.radio/pull/275#issuecomment-347047323) there are some challenges...
Currently we are using rollup to main bundle and webpack for test-browser bundler.
## Describe the bug When a br tag is present followed by a text with a link, the link is not rendered as html when parsed by marked and dingus...
### Description Currently `triggerMethod` looks for a matching method in the options through a call to `getOption` before looking in instance. We should consider removing this feature: 1- triggerMethod is...
[Custom Elements](https://developers.google.com/web/fundamentals/web-components/customelements) are gaining traction as the best way to create interoperable components for web. Ionic, the popular mobile framework, is being rewritten with [custom elements](https://stenciljs.com/). Angular is making Custom...