Compare commits

..

No commits in common. "733ddd7cfc5fdccb6e2a8c98e39ad3ec47d5c63d" and "10a72ff713bad8ca0177bfa2f30c63756b4f70e0" have entirely different histories.

3 changed files with 2 additions and 9 deletions

View file

@ -18,9 +18,6 @@
.page{ width:640px; } .page{ width:640px; }
body .script{ visibility: hidden; }
body.script .script{ visibility: visible !important; }
/* spacers */ /* spacers */
.margin1L{ margin: 0px 20px 10px 0px;} .margin1L{ margin: 0px 20px 10px 0px;}
.margin1{ margin: 10px 20px; } .margin1{ margin: 10px 20px; }

View file

@ -46,9 +46,6 @@
<!-- JanusXR portalroom, see https://janusxr.org for markup --> <!-- JanusXR portalroom, see https://janusxr.org for markup -->
${janusxr} ${janusxr}
<script>
document.body.classList.add('script') // show javascript buttons for modern browsers
</script>
</body> </body>
</html> </html>

View file

@ -12,9 +12,8 @@ app.on('set', function(k,v)
end) end)
app.on('autobackup', function() -- triggered by src/plugin/webhook.lua app.on('autobackup', function() -- triggered by src/plugin/webhook.lua
if util.cmdExist('rclone') and #app.opts.plugin_clouddrive_syncpath > 0 then if util.cmdExist('rclone') then
print("running RCLONE sync") print("running RCLONE cmd sync!")
os.execute("rclone sync " .. app.opts.plugin_diskscan_dir .. "/ " .. app.opts.plugin_clouddrive_syncpath )
end end
end) end)