UNPKG

requirejs-handlebars

Version:

Simple Handlebars plugin for RequireJS.

14 lines (13 loc) 322 B
define(['base'], function (base) { return { name: 'a', counter: 0, doSomething: function () { this.counter += 1; this.base = base; //This should not cause double notifications. require(['base'], function () { }); } }; });