Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Rafael Monnerat
slapos
Commits
54a2a0e2
Commit
54a2a0e2
authored
Oct 26, 2023
by
Léo-Paul Géneau
👾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
software/js-drone: fix latency in log displaying
parent
cfbef55a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
software/js-drone/buildout.hash.cfg
software/js-drone/buildout.hash.cfg
+1
-1
software/js-drone/web-gui/script.js.jinja2
software/js-drone/web-gui/script.js.jinja2
+6
-2
No files found.
software/js-drone/buildout.hash.cfg
View file @
54a2a0e2
...
...
@@ -38,7 +38,7 @@ md5sum = 1555496ad591a31a845f33488d5c335d
[script-js]
_update_hash_filename_ = web-gui/script.js.jinja2
md5sum =
dfa140d70d8a9cadc6cee865be4e8c26
md5sum =
24ed6ce534feab8bbb93f06246275e89
[worker]
_update_hash_filename_ = drone-scripts/worker.js.jinja2
...
...
software/js-drone/web-gui/script.js.jinja2
View file @
54a2a0e2
...
...
@@ -133,9 +133,13 @@
}
if (prompt.children.length === PROMPT_MAX_MSG) {
prompt.removeChild(prompt.firstElementChild);
setTimeout(function() {
prompt.removeChild(prompt.firstElementChild);
}, 0);
}
prompt.appendChild(new_div);
setTimeout(function() {
prompt.appendChild(new_div);
}, 0);
} else {
console.info(message);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment