From 5ddebb9233d82e2e8f3e1641c84e495c8f5e37a3 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Sat, 14 May 2016 12:40:11 +0200 Subject: [PATCH] Enhancements in the backend_users.js comments. --- src/assets/js/backend_users.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/assets/js/backend_users.js b/src/assets/js/backend_users.js index 55e7c3b7..9c63fc2a 100644 --- a/src/assets/js/backend_users.js +++ b/src/assets/js/backend_users.js @@ -26,29 +26,28 @@ window.BackendUsers = window.BackendUsers || {}; /** * Minimum Password Length * - * @type {int} + * @type {Number} */ exports.MIN_PASSWORD_LENGTH = 7; /** * Contains the current tab record methods for the page. * - * @type AdminsHelper|ProvidersHelper|SecretariesHelper + * @type {AdminsHelper|ProvidersHelper|SecretariesHelper} */ var helper = {}; /** * Use this class instance for performing actions on the working plan. * - * @type {object} + * @type {WorkingPlan} */ exports.wp = {}; /** * Initialize the backend users page. * - * @param {bool} defaultEventHandlers (OPTIONAL) Whether to bind the default event handlers - * (default: true). + * @param {Boolean} defaultEventHandlers (OPTIONAL) Whether to bind the default event handlers. */ exports.initialize = function(defaultEventHandlers) { defaultEventHandlers = defaultEventHandlers || true; @@ -83,7 +82,7 @@ window.BackendUsers = window.BackendUsers || {}; $('#provider-services').html(html); $('#provider-services').jScrollPane({ mouseWheelSpeed: 70 }); - var html = '
'; + html = '
'; $.each(GlobalVariables.providers, function(index, provider) { html += '
' +