mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Removed the backend_customers.js file as it is no longer needed
This commit is contained in:
parent
1a2909f9d0
commit
def2668ede
1 changed files with 0 additions and 65 deletions
|
@ -1,65 +0,0 @@
|
|||
/* ----------------------------------------------------------------------------
|
||||
* Easy!Appointments - Open Source Web Scheduler
|
||||
*
|
||||
* @package EasyAppointments
|
||||
* @author A.Tselegidis <alextselegidis@gmail.com>
|
||||
* @copyright Copyright (c) Alex Tselegidis
|
||||
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.0.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
window.BackendCustomers = window.BackendCustomers || {};
|
||||
|
||||
/**
|
||||
* Backend Customers
|
||||
*
|
||||
* Backend Customers javascript namespace. Contains the main functionality of the backend customers
|
||||
* page. If you need to use this namespace in a different page, do not bind the default event handlers
|
||||
* during initialization.
|
||||
*
|
||||
* @module BackendCustomers
|
||||
*/
|
||||
(function (exports) {
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* The page helper contains methods that implement each record type functionality
|
||||
* (for now there is only the CustomersHelper).
|
||||
*
|
||||
* @type {Object}
|
||||
*/
|
||||
var helper = {};
|
||||
|
||||
/**
|
||||
* This method initializes the backend customers page. If you use this namespace
|
||||
* in a different page do not use this method.
|
||||
*
|
||||
* @param {Boolean} defaultEventHandlers Optional (false), whether to bind the default
|
||||
* event handlers or not.
|
||||
*/
|
||||
exports.initialize = function (defaultEventHandlers) {
|
||||
defaultEventHandlers = defaultEventHandlers || false;
|
||||
|
||||
// Add the available languages to the language dropdown.
|
||||
availableLanguages.forEach(function (language) {
|
||||
$('#language').append(new Option(language, language));
|
||||
});
|
||||
|
||||
helper = new CustomersHelper();
|
||||
helper.resetForm();
|
||||
helper.filter('');
|
||||
helper.bindEventHandlers();
|
||||
|
||||
if (defaultEventHandlers) {
|
||||
bindEventHandlers();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Default event handlers declaration for backend customers page.
|
||||
*/
|
||||
function bindEventHandlers() {
|
||||
//
|
||||
}
|
||||
})(window.BackendCustomers);
|
Loading…
Reference in a new issue