Fix working dialog of pgmr and swu being closeable while active
Only the close button should work now
This commit is contained in:
parent
5c39e9a8a3
commit
4ed0ed5f99
4 changed files with 2 additions and 4 deletions
|
|
@ -648,7 +648,7 @@ $(function() {
|
|||
self.loglines.push({line: line, stream: "message"});
|
||||
self._scrollWorkingOutputToEnd();
|
||||
|
||||
self.workingDialog.modal("show");
|
||||
self.workingDialog.modal({keyboard: false, backdrop: "static", show: true});
|
||||
};
|
||||
|
||||
self._markDone = function() {
|
||||
|
|
|
|||
|
|
@ -88,7 +88,6 @@
|
|||
|
||||
<div id="settings_plugin_pluginmanager_workingdialog" class="modal hide fade">
|
||||
<div class="modal-header">
|
||||
<a href="#" class="close" data-dismiss="modal" aria-hidden="true">×</a>
|
||||
<h3 data-bind="text: workingTitle"></h3>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
|
|
|
|||
|
|
@ -454,7 +454,7 @@ $(function() {
|
|||
|
||||
self.working(true);
|
||||
self.workingTitle(title);
|
||||
self.workingDialog.modal("show");
|
||||
self.workingDialog.modal({keyboard: false, backdrop: "static", show: true});
|
||||
};
|
||||
|
||||
self._markWorking = function(title, line, stream) {
|
||||
|
|
|
|||
|
|
@ -96,7 +96,6 @@
|
|||
|
||||
<div id="settings_plugin_softwareupdate_workingdialog" class="modal hide fade">
|
||||
<div class="modal-header">
|
||||
<a href="#" class="close" data-dismiss="modal" aria-hidden="true">×</a>
|
||||
<h3 data-bind="text: workingTitle"></h3>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
|
|
|
|||
Loading…
Reference in a new issue