use 0x01 for seps in labels string so users can use pipe if they want to
This commit is contained in:
+1
-1
@@ -1408,7 +1408,7 @@ var Screen = (function () {
|
||||
}
|
||||
|
||||
function _load_labels(str) {
|
||||
var pieces = str.split('|');
|
||||
var pieces = str.split('\x01');
|
||||
qs('h1').textContent = pieces[0];
|
||||
qsa('#buttons button').forEach(function(x, i) {
|
||||
var s = pieces[i+1].trim();
|
||||
|
||||
Reference in New Issue
Block a user