Enhancements in the installation.js comments.
This commit is contained in:
parent
bb87fb51bd
commit
1fecef4cff
1 changed files with 6 additions and 4 deletions
|
@ -74,9 +74,11 @@ $(document).ready(function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Validates the user input. Use this before executing the installation procedure.
|
* Validates the user input.
|
||||||
*
|
*
|
||||||
* @returns {bool} Returns the validation result.
|
* Use this before executing the installation procedure.
|
||||||
|
*
|
||||||
|
* @returns {Boolean} Returns the validation result.
|
||||||
*/
|
*/
|
||||||
function validate() {
|
function validate() {
|
||||||
try {
|
try {
|
||||||
|
@ -131,7 +133,7 @@ $(document).ready(function() {
|
||||||
/**
|
/**
|
||||||
* Get the admin data as an object.
|
* Get the admin data as an object.
|
||||||
*
|
*
|
||||||
* @returns {object}
|
* @return {Object}
|
||||||
*/
|
*/
|
||||||
function getAdminData() {
|
function getAdminData() {
|
||||||
var admin = {
|
var admin = {
|
||||||
|
@ -149,7 +151,7 @@ $(document).ready(function() {
|
||||||
/**
|
/**
|
||||||
* Get the company data as an object.
|
* Get the company data as an object.
|
||||||
*
|
*
|
||||||
* @returns {object}
|
* @return {Object}
|
||||||
*/
|
*/
|
||||||
function getCompanyData() {
|
function getCompanyData() {
|
||||||
var company = {
|
var company = {
|
||||||
|
|
Loading…
Reference in a new issue