File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed
templates/FullscreenInteractive/QueuedJobProgressField Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 116
116
.removeClass('continue--disabled ' )
117
117
118
118
continueSection.find('a ' ).text('Continue ' );
119
- continueSection.find('p ' ).remove();
119
+ continueSection.find('p ' ).hide();
120
+
121
+ // change to a txt.
122
+ $('.fa-sync' )
123
+ .removeClass('fa-sync fa-spin fa' )
124
+ .addClass('fas fa-check' )
125
+ })
126
+
127
+ $('body ' ).on('queuedjob-resumed ', function() {
128
+ var continueSection = $('.continue' )
129
+ .addClass('continue--disabled ' )
130
+
131
+ continueSection.find('a ' ).text('Please wait..' );
132
+ continueSection.find('p ' ).show();
133
+
134
+ // change to a txt.
135
+ $('.fa-check' )
136
+ .removeClass('fas fa-check' )
137
+ .addClass('fa-sync fa-spin fa' )
120
138
})
121
139
})
122
140
</script>
You can’t perform that action at this time.
0 commit comments