Lines Matching refs:CalendarNavigator
23 * @class CalendarNavigator
27 function CalendarNavigator(config) {
28 CalendarNavigator.superclass.constructor.apply(this, arguments);
40 CalendarNavigator.NS = "navigator";
43 * The NAME of the CalendarNavigator class. Used to prefix events generated
51 CalendarNavigator.NAME = "pluginCalendarNavigator";
62 CalendarNavigator.ATTRS = {
84 CalendarNavigator.CALENDARNAV_STRINGS = {
96 CalendarNavigator.PREV_MONTH_CONTROL_TEMPLATE = '<a class="yui3-u {prev_month_class}" role="button" aria-label="{prev_month_arialabel}" tabindex="{control_tabindex}">' +
107 CalendarNavigator.NEXT_MONTH_CONTROL_TEMPLATE = '<a class="yui3-u {next_month_class}" role="button" aria-label="{next_month_arialabel}" tabindex="{control_tabindex}">' +
112 Y.extend(CalendarNavigator, Y.Plugin.Base, {
227 var prevControlNode = create(substitute (CalendarNavigator.PREV_MONTH_CONTROL_TEMPLATE,
228 CalendarNavigator.CALENDARNAV_STRINGS));
241 var nextControlNode = create(substitute (CalendarNavigator.NEXT_MONTH_CONTROL_TEMPLATE,
242 CalendarNavigator.CALENDARNAV_STRINGS));
255 CalendarNavigator.CALENDARNAV_STRINGS["control_tabindex"] = host.get("tabIndex");
256 CalendarNavigator.CALENDARNAV_STRINGS["prev_month_arialabel"] = "Go to previous month";
257 CalendarNavigator.CALENDARNAV_STRINGS["next_month_arialabel"] = "Go to next month";
273 Y.namespace("Plugin").CalendarNavigator = CalendarNavigator