mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
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.setup(companyWorkingPlan);
|
||||
workingPlanManager.timepickers(false);
|
||||
workingPlanManager.bindEventHandlers();
|
||||
workingPlanManager.addEventListeners();
|
||||
|
||||
$saveSettings.on('click', onSaveSettingsClick);
|
||||
|
||||
|
|
|
@ -527,7 +527,7 @@ App.Pages.Providers = (function () {
|
|||
*/
|
||||
function initialize() {
|
||||
workingPlanManager = new App.Utils.WorkingPlan();
|
||||
workingPlanManager.bindEventHandlers();
|
||||
workingPlanManager.addEventListeners();
|
||||
|
||||
resetForm();
|
||||
filter('');
|
||||
|
|
|
@ -342,9 +342,9 @@ App.Utils.WorkingPlan = (function () {
|
|||
});
|
||||
}
|
||||
/**
|
||||
* Bind the event handlers.
|
||||
* Add the utility event listeners.
|
||||
*/
|
||||
bindEventHandlers() {
|
||||
addEventListeners() {
|
||||
/**
|
||||
* Event: Day Checkbox "Click"
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue