Enhancements in the backend_customers.js comments.

This commit is contained in:
Alex Tselegidis 2016-05-15 12:13:56 +02:00
parent 4efa760bdd
commit 9aab156b69
1 changed files with 5 additions and 5 deletions

View File

@ -14,9 +14,9 @@
/** /**
* Backend Customers * Backend Customers
* *
* Backend Customers javasript namespace. Contains the main functionality * Backend Customers javasript namespace. Contains the main functionality of the backend customers
* of the backend customers page. If you need to use this namespace in a * page. If you need to use this namespace in a different page, do not bind the default event handlers
* different page, do not bind the default event handlers during initialization. * during initialization.
* *
* @module BackendCustomers * @module BackendCustomers
*/ */
@ -28,7 +28,7 @@
* The page helper contains methods that implement each record type functionality * The page helper contains methods that implement each record type functionality
* (for now there is only the CustomersHelper). * (for now there is only the CustomersHelper).
* *
* @type {object} * @type {Object}
*/ */
var helper = {}; var helper = {};
@ -36,7 +36,7 @@
* This method initializes the backend customers page. If you use this namespace * This method initializes the backend customers page. If you use this namespace
* in a different page do not use this method. * in a different page do not use this method.
* *
* @param {bool} defaultEventHandlers (OPTIONAL = false) Whether to bind the default * @param {Boolean} defaultEventHandlers Optional (false), whether to bind the default
* event handlers or not. * event handlers or not.
*/ */
exports.initialize = function(defaultEventHandlers) { exports.initialize = function(defaultEventHandlers) {