add missing parameter in documentation

This commit is contained in:
fewieden 2018-02-10 12:38:55 +01:00
parent 305d60e09b
commit daa0755920

View File

@ -156,11 +156,12 @@ var Translator = (function() {
return key; return key;
}, },
/* load(module, file, callback) /* load(module, file, isFallback, callback)
* Load a translation file (json) and remember the data. * Load a translation file (json) and remember the data.
* *
* argument module Module - The module to load the translation file for. * argument module Module - The module to load the translation file for.
* argument file string - Path of the file we want to load. * argument file string - Path of the file we want to load.
* argument isFallback boolean - Flag to indicate fallback translations.
* argument callback function - Function called when done. * argument callback function - Function called when done.
*/ */
load: function(module, file, isFallback, callback) { load: function(module, file, isFallback, callback) {