Merge branch 'text-editor' of https://github.com/h5p/h5p-php-library into text-editor

namespaces
Svein-Tore Griff With 2015-01-14 09:55:48 +01:00
commit 43e98afe4b
2 changed files with 30 additions and 10 deletions

View File

@ -105,6 +105,22 @@ H5P.EventDispatcher = (function () {
}
};
/**
* Creates a copy of the arguments list. Skips the given number of arguments.
*
* @private
* @param {Array} args List of arguments
* @param {Number} skip Number of arguments to skip
* @param {Array} Copy og arguments list
*/
var getArgs = function (args, skip) {
var left = [];
for (var i = skip; i < args.length; i++) {
left.push(args[i]);
}
return left;
};
/**
* Dispatch event.
*
@ -112,20 +128,21 @@ H5P.EventDispatcher = (function () {
* @param {String} type Event type
* @param {...*} args
*/
self.trigger = function (type, args) {
self.trigger = function (type) {
if (self.debug !== undefined) {
// Class has debug enabled. Log events.
console.log(self.debug + ' - Firing event "' + type + '", ' + (events[type] === undefined ? 0 : events[type].length) + ' listeners.', getArgs(arguments, 1));
}
if (events[type] === undefined) {
return;
}
// Copy all arguments except the first
args = [];
var i;
for (i = 1; i < arguments.length; i++) {
args.push(arguments[i]);
}
var args = getArgs(arguments, 1);
// Call all listeners
for (i = 0; i < events[type].length; i++) {
for (var i = 0; i < events[type].length; i++) {
events[type][i].apply(self, args);
}
};

File diff suppressed because one or more lines are too long