in Ox.Calendar tooltips, only display the text representation of an event's range if it's different from the event's name
This commit is contained in:
parent
7415b72037
commit
b6c872b5a4
3 changed files with 12 additions and 3 deletions
|
|
@ -184,6 +184,14 @@ Ox.Select = function(options, self) {
|
|||
}
|
||||
};
|
||||
|
||||
that.disableItem = function(id) {
|
||||
self.$menu.getItem(id).options({disabled: true});
|
||||
};
|
||||
|
||||
that.enableItem = function(id) {
|
||||
self.$menu.getItem(id).options({disabled: false});
|
||||
};
|
||||
|
||||
// FIXME: selected() _and_ selectItem() _and_ value() ???
|
||||
|
||||
/*@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue