use unicode symbols for input
This commit is contained in:
parent
31bb10f87e
commit
013f5c2620
2 changed files with 14 additions and 8 deletions
|
|
@ -59,7 +59,8 @@ requires
|
|||
burn: "\u2622",
|
||||
caps_lock: "\u21EA",
|
||||
check: "\u2713",
|
||||
clear: "\u2327",
|
||||
//clear: "\u2327",
|
||||
clear: "\u00D7",
|
||||
click: "\uF803",
|
||||
close: "\u2715",
|
||||
command: "\u2318",
|
||||
|
|
@ -1771,8 +1772,9 @@ requires
|
|||
that.$label && that.$label.click(select);
|
||||
that.$select = new Ox.Button({
|
||||
style: "symbol",
|
||||
type: "image",
|
||||
value: "select"
|
||||
// type: "image",
|
||||
// value: "select"
|
||||
value: oxui.symbols.select
|
||||
})
|
||||
.click(select)
|
||||
.appendTo(that);
|
||||
|
|
@ -1816,8 +1818,9 @@ requires
|
|||
if (self.options.clear) {
|
||||
that.$clear = new Ox.Button({
|
||||
style: "symbol",
|
||||
type: "image",
|
||||
value: "clear"
|
||||
//type: "image",
|
||||
//value: "clear"
|
||||
value: oxui.symbols.clear
|
||||
})
|
||||
.click(clear)
|
||||
.appendTo(that);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue