Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
a634a803
Commit
a634a803
authored
Nov 16, 2016
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
firmware: avoid races on dashboard link click
parent
43d45ace
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
firmware.volt
src/opnsense/mvc/app/views/OPNsense/Core/firmware.volt
+13
-4
No files found.
src/opnsense/mvc/app/views/OPNsense/Core/firmware.volt
View file @
a634a803
...
...
@@ -29,13 +29,20 @@ POSSIBILITY OF SUCH DAMAGE.
<script type="text/javascript">
/**
*
retrieve update status from backend
*
prepare for checking update status
*/
function updateStatus() {
// update UI
function updateStatusPrepare() {
$('#updatelist').empty();
$("#checkupdate_progress").addClass("fa fa-spinner fa-pulse");
$('#updatestatus').html("{{ lang._('Checking... (may take up to 30 seconds)') }}");
}
/**
* retrieve update status from backend
*/
function updateStatus() {
// update UI
updateStatusPrepare();
// request status
ajaxGet('/api/core/firmware/status',{},function(data,status){
...
...
@@ -356,7 +363,9 @@ POSSIBILITY OF SUCH DAMAGE.
upgrade();
// dashboard link: run check automatically
} else if (window.location.hash == '#checkupdate') {
updateStatus();
// update UI and delay update to avoid races
updateStatusPrepare();
setTimeout(updateStatus, 1000);
}
});
...
...
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