106 lines
3.5 KiB
JavaScript
106 lines
3.5 KiB
JavaScript
define("converse-templates", [
|
|
"tpl!action",
|
|
"tpl!add_contact_dropdown",
|
|
"tpl!add_contact_form",
|
|
"tpl!change_status_message",
|
|
"tpl!chat_status",
|
|
"tpl!chatarea",
|
|
"tpl!chatbox",
|
|
"tpl!chatroom",
|
|
"tpl!chatroom_password_form",
|
|
"tpl!chatroom_sidebar",
|
|
"tpl!chatrooms_tab",
|
|
"tpl!chats_panel",
|
|
"tpl!choose_status",
|
|
"tpl!contacts_panel",
|
|
"tpl!contacts_tab",
|
|
"tpl!controlbox",
|
|
"tpl!controlbox_toggle",
|
|
"tpl!field",
|
|
"tpl!form_captcha",
|
|
"tpl!form_checkbox",
|
|
"tpl!form_input",
|
|
"tpl!form_select",
|
|
"tpl!form_textarea",
|
|
"tpl!form_username",
|
|
"tpl!group_header",
|
|
"tpl!info",
|
|
"tpl!login_panel",
|
|
"tpl!login_tab",
|
|
"tpl!message",
|
|
"tpl!new_day",
|
|
"tpl!occupant",
|
|
"tpl!pending_contact",
|
|
"tpl!pending_contacts",
|
|
"tpl!register_panel",
|
|
"tpl!register_tab",
|
|
"tpl!registration_form",
|
|
"tpl!registration_request",
|
|
"tpl!requesting_contact",
|
|
"tpl!requesting_contacts",
|
|
"tpl!room_description",
|
|
"tpl!room_item",
|
|
"tpl!room_panel",
|
|
"tpl!roster",
|
|
"tpl!roster_item",
|
|
"tpl!search_contact",
|
|
"tpl!select_option",
|
|
"tpl!status_option",
|
|
"tpl!toggle_chats",
|
|
"tpl!toolbar",
|
|
"tpl!trimmed_chat"
|
|
], function () {
|
|
return {
|
|
action: arguments[0],
|
|
add_contact_dropdown: arguments[1],
|
|
add_contact_form: arguments[2],
|
|
change_status_message: arguments[3],
|
|
chat_status: arguments[4],
|
|
chatarea: arguments[5],
|
|
chatbox: arguments[6],
|
|
chatroom: arguments[7],
|
|
chatroom_password_form: arguments[8],
|
|
chatroom_sidebar: arguments[9],
|
|
chatrooms_tab: arguments[10],
|
|
chats_panel: arguments[11],
|
|
choose_status: arguments[12],
|
|
contacts_panel: arguments[13],
|
|
contacts_tab: arguments[14],
|
|
controlbox: arguments[15],
|
|
controlbox_toggle: arguments[16],
|
|
field: arguments[17],
|
|
form_captcha: arguments[18],
|
|
form_checkbox: arguments[19],
|
|
form_input: arguments[20],
|
|
form_select: arguments[21],
|
|
form_textarea: arguments[22],
|
|
form_username: arguments[23],
|
|
group_header: arguments[24],
|
|
info: arguments[25],
|
|
login_panel: arguments[26],
|
|
login_tab: arguments[27],
|
|
message: arguments[28],
|
|
new_day: arguments[29],
|
|
occupant: arguments[30],
|
|
pending_contact: arguments[31],
|
|
pending_contacts: arguments[32],
|
|
register_panel: arguments[33],
|
|
register_tab: arguments[34],
|
|
registration_form: arguments[35],
|
|
registration_request: arguments[36],
|
|
requesting_contact: arguments[37],
|
|
requesting_contacts: arguments[38],
|
|
room_description: arguments[39],
|
|
room_item: arguments[40],
|
|
room_panel: arguments[41],
|
|
roster: arguments[42],
|
|
roster_item: arguments[43],
|
|
search_contact: arguments[44],
|
|
select_option: arguments[45],
|
|
status_option: arguments[46],
|
|
toggle_chats: arguments[47],
|
|
toolbar: arguments[48],
|
|
trimmed_chat: arguments[49]
|
|
};
|
|
});
|