- Timestamp:
- 05/12/16 17:09:12 (9 years ago)
- Location:
- branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Scripts/Hubs/ProgressHubber.js
r13844 r13847 6 6 7 7 var v = document.getElementById("userId").innerHTML; 8 var busy = false; 8 9 console.log(v); 9 10 $.connection.hub.qs = { 'userid': v }; … … 31 32 32 33 hubber.client.saveComplete = function (text) { 33 $("#succText").html(text); 34 if(busy) 35 window.setTimeout(1500); 36 busy = true; 37 $("#succText").html(text); 34 38 $("#success-alert").alert(); 35 39 $("#success-alert").fadeTo(2000, 500).slideUp(500, function () { 36 40 $("#success-alert").hide(); 41 busy = false; 37 42 }); 38 43 } -
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Scripts/Styling/StyleSheet.css
r13827 r13847 4 4 background-color: #fff; 5 5 -webkit-font-smoothing: antialiased; 6 font: normal 14px Roboto,arial,sans-serif ;6 font: normal 14px Roboto,arial,sans-serif !important; 7 7 } 8 8
Note: See TracChangeset
for help on using the changeset viewer.