repo: janusweb action: commit revision: path_from: revision_from: 6d91ca36fdafc29c0defd01c88982986f56a8f14: path_to: revision_to:
commit 6d91ca36fdafc29c0defd01c88982986f56a8f14 Author: James BaicoianuDate: Sun Jan 30 13:45:05 2022 -0800 Fixed missing semicolons and accidental globals diff --git a/scripts/janusweb.js b/scripts/janusweb.js
--- a/scripts/janusweb.js
+++ b/scripts/janusweb.js
@@ -101,7 +101,7 @@ elation.require([
if (this.urltemplate) {
dust.filters.stripunsafe = function(s) {
return s.replace(/:\//g, '');
- }
+ };
elation.template.add('janusweb.url', this.urltemplate);
}
this.initScripting();
@@ -529,7 +529,7 @@ elation.require([
}
this.handleRoomEditOther = function(data) {
var roomId = data.roomId,
- movedata = data.position;
+ movedata = data.position,
edit = movedata.room_edit,
del = movedata.room_delete;
-----END OF PAGE-----