forked from mirrors/easyappointments
Use the App.Utils.Message.show instead of the GeneralFunctions for displaying messages in frontend_book.js
This commit is contained in:
parent
44b438440b
commit
588db71497
1 changed files with 4 additions and 5 deletions
|
@ -14,9 +14,8 @@ window.FrontendBook = window.FrontendBook || {};
|
||||||
/**
|
/**
|
||||||
* Frontend Book
|
* Frontend Book
|
||||||
*
|
*
|
||||||
* This module contains functions that implement the book appointment page functionality. Once the
|
* This module contains functions that implement the book appointment page functionality. Once the "initialize" method
|
||||||
* initialize() method is called the page is fully functional and can serve the appointment booking
|
* is called the page is fully functional and can serve the appointment booking process.
|
||||||
* process.
|
|
||||||
*
|
*
|
||||||
* @module FrontendBook
|
* @module FrontendBook
|
||||||
*/
|
*/
|
||||||
|
@ -424,7 +423,7 @@ window.FrontendBook = window.FrontendBook || {};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
GeneralFunctions.displayMessageBox(
|
App.Utils.Message.show(
|
||||||
App.Lang.cancel_appointment_title,
|
App.Lang.cancel_appointment_title,
|
||||||
App.Lang.write_appointment_removal_reason,
|
App.Lang.write_appointment_removal_reason,
|
||||||
buttons
|
buttons
|
||||||
|
@ -458,7 +457,7 @@ window.FrontendBook = window.FrontendBook || {};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
GeneralFunctions.displayMessageBox(
|
App.Utils.Message.show(
|
||||||
App.Lang.delete_personal_information,
|
App.Lang.delete_personal_information,
|
||||||
App.Lang.delete_personal_information_prompt,
|
App.Lang.delete_personal_information_prompt,
|
||||||
buttons
|
buttons
|
||||||
|
|
Loading…
Reference in a new issue