Skip to content

Commit cd62606

Browse files
author
bastieneichenberger
committed
add version
1 parent 7770b18 commit cd62606

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/helper/config/constants.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/** * Module with constants * @namespace Constants * @memberOf H * @author Bastien Eichenberger */H.Constants = (function (my) { /** * Object with constants * @private * @memberOf PS.Constants * @type {Object} * @property {String} MY_CONST * @property {Number} MY_INTEGER */ var MY_CONSTANTS = { MY_CONST: 'hello constante', MY_INTEGER: 1 }; /** * Function to get a constant * @function get * @memberOf PS.Constants * @param {string} name * @returns {*} */ my.get = function (name) { return MY_CONSTANTS[name]; } return my;})(H.Constants || {});
1+
/** * Module with constants * @namespace Constants * @memberOf H * @author Bastien Eichenberger */H.Constants = (function (my) { /** * Object with constants * @private * @memberOf PS.Constants * @type {Object} * @property {String} MY_CONST * @property {Number} MY_INTEGER */ var MY_CONSTANTS = { VERSION: 1.0 }; /** * Function to get a constant * @function get * @memberOf PS.Constants * @param {string} name * @returns {*} */ my.get = function (name) { return MY_CONSTANTS[name]; } return my;})(H.Constants || {});

0 commit comments

Comments
 (0)