Skip to content

Commit

Permalink
fix space in ssr pro luci
Browse files Browse the repository at this point in the history
  • Loading branch information
coolsnowwolf committed May 23, 2018
1 parent 1087f56 commit 7f9008c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
var tb = document.getElementById('ssrpro_status');
if (data && tb) {
if (data.running) {
var links = '<em><b><font color=green>ShadowsocksR Pro<%:RUNNING%></font></b></em>';
var links = '<em><b><font color=green>ShadowsocksR Pro <%:RUNNING%></font></b></em>';
tb.innerHTML = links;
} else {
tb.innerHTML = '<em><b><font color=red>ShadowsocksR Pro<%:NOT RUNNING%></font></b></em>';
tb.innerHTML = '<em><b><font color=red>ShadowsocksR Pro <%:NOT RUNNING%></font></b></em>';
}
}
}
Expand Down

0 comments on commit 7f9008c

Please sign in to comment.