- Timestamp:
- 05/10/16 16:55:18 (9 years ago)
- Location:
- branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Scripts/Hubs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Scripts/Hubs/ProgressHubber.js
r13834 r13841 22 22 } 23 23 }; 24 hubber.client.processName = function (name, random) { 25 26 $("#nameCarrier" + random).html(name); 27 28 }; 29 hubber.client.processRepit = function (name, repit) { 30 if (name === "failed") { 31 window.alert("Something went wrong while changing the repititions, please try again") 32 } 33 else 34 window.alert("Repititions for " + name + " has been changed to " + repit + ". These changes are not shown in the interface but happen directly after uploading or saving."); 35 } 24 36 hubber.client.dataNotSupported = function (name) { 25 37 window.alert("Parameter " + name + " could not be changed for it is a fixed parameter. All changes done in this view are not saved to Hive."); … … 56 68 //Changes a tasks priority 57 69 function changePriority(arr, prior, idprior) { 58 console.log(arr + " to priority " + prior);59 70 hubber.server.changePriority(arr, prior); 60 71 resetPrior(idprior); … … 83 94 document.getElementById("prior" + id).className = "btn dropdown-toggle "; 84 95 } 85 86 96 //changes name of a task 97 function changeName(arr, name, idname) { 98 hubber.server.changeName(arr, name, idname); 99 } 100 function changeRepit(arr, repit) { 101 hubber.server.changeRepit(arr, repit); 102 } 87 103 function paraEdit(arr, problem, name, type, value) { 88 104 hubber.server.paraEdit(arr, problem, name, type, value); -
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Scripts/Hubs/UserInfoHubber.js
r13805 r13841 8 8 $.connection.hub.start(); 9 9 hubber.client.showNewPass = function (pass) { 10 $("#inppassreset").html("<label class=' control-label' style='text-align:left'>New pass: " + pass + ". An email has been sent to the user containing the new password</label>");10 $("#inppassreset").html("<label class=' control-label' style='text-align:left'>New pass: '" + pass + "'. An email has been sent to the user containing the new password</label>"); 11 11 12 12 };
Note: See TracChangeset
for help on using the changeset viewer.