forked from mirrors/easyappointments
Rename the working plan bindEventListeners to addEventListeners
This commit is contained in:
parent
1690ba7b10
commit
7b2315c371
3 changed files with 4 additions and 4 deletions
|
@ -146,7 +146,7 @@ App.Pages.BusinessSettings = (function () {
|
||||||
workingPlanManager = new App.Utils.WorkingPlan();
|
workingPlanManager = new App.Utils.WorkingPlan();
|
||||||
workingPlanManager.setup(companyWorkingPlan);
|
workingPlanManager.setup(companyWorkingPlan);
|
||||||
workingPlanManager.timepickers(false);
|
workingPlanManager.timepickers(false);
|
||||||
workingPlanManager.bindEventHandlers();
|
workingPlanManager.addEventListeners();
|
||||||
|
|
||||||
$saveSettings.on('click', onSaveSettingsClick);
|
$saveSettings.on('click', onSaveSettingsClick);
|
||||||
|
|
||||||
|
|
|
@ -527,7 +527,7 @@ App.Pages.Providers = (function () {
|
||||||
*/
|
*/
|
||||||
function initialize() {
|
function initialize() {
|
||||||
workingPlanManager = new App.Utils.WorkingPlan();
|
workingPlanManager = new App.Utils.WorkingPlan();
|
||||||
workingPlanManager.bindEventHandlers();
|
workingPlanManager.addEventListeners();
|
||||||
|
|
||||||
resetForm();
|
resetForm();
|
||||||
filter('');
|
filter('');
|
||||||
|
|
|
@ -342,9 +342,9 @@ App.Utils.WorkingPlan = (function () {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Bind the event handlers.
|
* Add the utility event listeners.
|
||||||
*/
|
*/
|
||||||
bindEventHandlers() {
|
addEventListeners() {
|
||||||
/**
|
/**
|
||||||
* Event: Day Checkbox "Click"
|
* Event: Day Checkbox "Click"
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue