Lines Matching refs:deps

4447 View.watch('displayingDates', ['isInDom', 'dateProfile'], function (deps) {
4448 this.requestDateRender(deps.dateProfile);
4452 View.watch('displayingBusinessHours', ['displayingDates', 'businessHourGenerator'], function (deps)…
4453 this.requestBusinessHoursRender(deps.businessHourGenerator);
4457 View.watch('initialEvents', ['dateProfile'], function (deps) {
4458 return this.fetchInitialEvents(deps.dateProfile);
4460 View.watch('bindingEvents', ['initialEvents'], function (deps) {
4461 this.setEvents(deps.initialEvents);
4472 View.watch('title', ['dateProfile'], function (deps) {
4473 return (this.title = this.computeTitle(deps.dateProfile)); // assign to View for legacy reasons
4475 View.watch('legacyDateProps', ['dateProfile'], function (deps) {
4477 var dateProfile = deps.dateProfile;
5321 this._watchers[name] = this._watchDeps(depList, function (deps) {
5322 var res = startFunc.call(_this, deps);
5332 }, function (deps) {
5335 stopFunc.call(_this, deps);
10842 … this.optionsManager.watch('settingBusinessHourGenerator', ['?businessHours'], function (deps) {
10843 … _this.businessHourGenerator = new BusinessHourGenerator_1.default(deps.businessHours, _this);
10890 view.watch('titleForCalendar', ['title'], function (deps) {
10892 _this.setToolbarsTitle(deps.title);
10895 view.watch('dateProfileForCalendar', ['dateProfile'], function (deps) {
10897 … _this.currentDate = deps.dateProfile.date; // might have been constrained by view dates
10898 _this.updateToolbarButtons(deps.dateProfile);