rbbt-rest 1.6.15 → 1.6.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4641e72237336ff138cd1a1578bfa24c0a20aef5
|
|
4
|
+
data.tar.gz: 065b0f0337d4425e0843ff4fc580de2c5acbc51e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a19ad7180ff2389dc800626b7a0d150e74df6019f45163b439d2a19e053852bf97692698807ebcd91aa5daea2093c0ea0ec235d3eafb85ee8bc94ce97febf8e4
|
|
7
|
+
data.tar.gz: 1e2c927cb84cf71edee150356859b14288251e4f1bede746c63fe0c809fa4b86d1fc7d0a1e303dbd0c6f3b7043fe4abf1415d422391a5c8fb562d5274003e0c7
|
|
@@ -308,9 +308,9 @@ span.bullet
|
|
|
308
308
|
label[title]
|
|
309
309
|
cursor: help
|
|
310
310
|
|
|
311
|
-
.
|
|
311
|
+
.action_progress.ui.message
|
|
312
312
|
margin-top: 8px
|
|
313
|
-
.
|
|
313
|
+
.action_progress.ui.message:empty
|
|
314
314
|
display: none
|
|
315
315
|
|
|
316
316
|
.examples
|
|
@@ -356,3 +356,5 @@ label[title]
|
|
|
356
356
|
float:left
|
|
357
357
|
clear:both
|
|
358
358
|
|
|
359
|
+
.action_menu.ui.buttons
|
|
360
|
+
display: block
|
|
@@ -101,11 +101,11 @@ $.widget("rbbt.action_controller", {
|
|
|
101
101
|
var progress = response.find('.step.progress')
|
|
102
102
|
|
|
103
103
|
text = [$('<div class="header">').html(stat), $('<div class="content">').html(message)]
|
|
104
|
-
action_controller.find('> .
|
|
104
|
+
action_controller.find('> .action_progress').html("").append(text).append(progress);
|
|
105
105
|
update_rbbt()
|
|
106
106
|
}
|
|
107
107
|
}else{
|
|
108
|
-
action_controller.find('> .
|
|
108
|
+
action_controller.find('> .action_progress').html("");
|
|
109
109
|
action_controller.removeClass('loading').removeClass('disabled');
|
|
110
110
|
action_list_item.removeClass('loading').removeClass('disabled');
|
|
111
111
|
|