},
/**
- * @deprecated Use WoltLab/WCF/Core.getUUID()
+ * @deprecated Use WoltLab/WCF/Core.getUuid().
*/
getUUID: function() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
* @see http://stackoverflow.com/a/2117523
* @return {string}
*/
- getUUID: function() {
+ getUuid: function() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
return v.toString(16);
actions.set(action, callbacks);
}
- var uuid = Core.getUUID();
+ var uuid = Core.getUuid();
callbacks.set(uuid, callback);
return uuid;