9 lines
242 B
JavaScript
9 lines
242 B
JavaScript
![]() |
if(typeof exports == 'undefined'){
|
||
|
var exports = this['mymodule'] = {};
|
||
|
}
|
||
|
exports.handleClientMessage_CUSTOM = function(hook, context, wut){
|
||
|
if(context.payload.action === 'requestRECONNECT'){
|
||
|
window.location.reload();
|
||
|
}
|
||
|
}
|