Skip to content

Commit a93da72

Browse files
committed
Fix spinner in Console and Snippet Runner panels
1 parent dbc8ef7 commit a93da72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

TracyDebugger.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class TracyDebugger extends WireData implements Module, ConfigurableModule {
3232
'summary' => __('Tracy debugger from Nette with several PW specific custom tools.', __FILE__),
3333
'author' => 'Adrian Jones',
3434
'href' => 'https://processwire.com/talk/topic/12208-tracy-debugger/',
35-
'version' => '4.10.13',
35+
'version' => '4.10.14',
3636
'autoload' => true,
3737
'singular' => true,
3838
'requires' => 'ProcessWire>=2.7.2, PHP>=5.4.4',

panels/ConsolePanel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public function getPanel() {
164164
165165
processTracyCode: function() {
166166
var code = this.tce.getSelectedText() || this.tce.getValue();
167-
document.getElementById("tracyConsoleStatus").innerHTML = "<i class='fa fa-spinner fa-spin'></i> Processing";
167+
document.getElementById("tracyConsoleStatus").innerHTML = "<i style='font-family: FontAwesome !important' class='fa fa-spinner fa-spin'></i> Processing";
168168
this.callPhp(code);
169169
this.saveHistory();
170170
this.tce.focus();

panels/SnippetRunnerPanel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public function getPanel() {
173173
174174
processTracySnippetRunnerCode: function() {
175175
file = typeof this.loadedSnippetFile === 'undefined' ? '' : this.loadedSnippetFile;
176-
document.getElementById("tracySnippetRunnerStatus").innerHTML = "<i class='fa fa-spinner fa-spin'></i> Processing";
176+
document.getElementById("tracySnippetRunnerStatus").innerHTML = "<i style='font-family: FontAwesome !important' class='fa fa-spinner fa-spin'></i> Processing";
177177
this.callSnippetRunnerPhp(file);
178178
document.getElementById('runSnippetRunnerCode').blur();
179179
},

0 commit comments

Comments
 (0)