forked from 0x2620/oxjs
ListCalendar -> CalendarEditor; ListMap -> MapEditor
This commit is contained in:
parent
2fd3345328
commit
6c5b8ef0b6
4 changed files with 14 additions and 18 deletions
|
|
@ -1,14 +1,13 @@
|
|||
'use strict';
|
||||
|
||||
/*@
|
||||
Ox.ListCalendar <f> List Calendar
|
||||
([options[, self]]) -> <o:Ox.SplitPanel> List Calendar
|
||||
Ox.CalendarEditor <f> Calendar Editor
|
||||
([options[, self]]) -> <o:Ox.SplitPanel> Calendar Editor
|
||||
options <o> Options
|
||||
self <o> Shared private variable
|
||||
@*/
|
||||
// FIXME: should be Ox.CalendarEditor
|
||||
|
||||
Ox.ListCalendar = function(options, self) {
|
||||
Ox.CalendarEditor = function(options, self) {
|
||||
|
||||
self = self || {};
|
||||
var that = Ox.Element({}, self)
|
||||
|
|
@ -553,7 +552,7 @@ Ox.ListCalendar = function(options, self) {
|
|||
],
|
||||
orientation: 'horizontal'
|
||||
})
|
||||
.addClass('OxListMap')
|
||||
.addClass('OxCalendarEditor')
|
||||
);
|
||||
|
||||
// if loaded with selection, set calendar and form
|
||||
Loading…
Add table
Add a link
Reference in a new issue