Commit 31de78f0 authored by JC Brand's avatar JC Brand

Also declare the template paths in main.js

parent 07b73930
...@@ -19,7 +19,7 @@ config = { ...@@ -19,7 +19,7 @@ config = {
"strophe.vcard": "components/strophe.vcard/index", "strophe.vcard": "components/strophe.vcard/index",
"text": 'components/requirejs-text/text', "text": 'components/requirejs-text/text',
"tpl": 'components/requirejs-tpl-jcbrand/tpl', "tpl": 'components/requirejs-tpl-jcbrand/tpl',
"typeahead": 'components/typeahead.js/dist/typeahead.jquery', "typeahead": "components/typeahead.js/dist/typeahead.jquery",
"underscore": "components/underscore/underscore", "underscore": "components/underscore/underscore",
"utils": "src/utils", "utils": "src/utils",
...@@ -56,7 +56,50 @@ config = { ...@@ -56,7 +56,50 @@ config = {
"nl": "locale/nl/LC_MESSAGES/nl", "nl": "locale/nl/LC_MESSAGES/nl",
"pt_BR": "locale/pt_BR/LC_MESSAGES/pt_BR", "pt_BR": "locale/pt_BR/LC_MESSAGES/pt_BR",
"ru": "locale/ru/LC_MESSAGES/ru", "ru": "locale/ru/LC_MESSAGES/ru",
"zh": "locale/zh/LC_MESSAGES/zh" "zh": "locale/zh/LC_MESSAGES/zh",
// Templates
"action": "src/templates/action",
"add_contact_dropdown": "src/templates/add_contact_dropdown",
"add_contact_form": "src/templates/add_contact_form",
"change_status_message": "src/templates/change_status_message",
"chat_status": "src/templates/chat_status",
"chatarea": "src/templates/chatarea",
"chatbox": "src/templates/chatbox",
"chatroom": "src/templates/chatroom",
"chatrooms_tab": "src/templates/chatrooms_tab",
"chats_panel": "src/templates/chats_panel",
"choose_status": "src/templates/choose_status",
"contacts_panel": "src/templates/contacts_panel",
"contacts_tab": "src/templates/contacts_tab",
"controlbox": "src/templates/controlbox",
"controlbox_toggle": "src/templates/controlbox_toggle",
"field": "src/templates/field",
"form_checkbox": "src/templates/form_checkbox",
"form_input": "src/templates/form_input",
"form_select": "src/templates/form_select",
"group_header": "src/templates/group_header",
"info": "src/templates/info",
"login_panel": "src/templates/login_panel",
"login_tab": "src/templates/login_tab",
"message": "src/templates/message",
"new_day": "src/templates/new_day",
"occupant": "src/templates/occupant",
"pending_contact": "src/templates/pending_contact",
"pending_contacts": "src/templates/pending_contacts",
"requesting_contact": "src/templates/requesting_contact",
"requesting_contacts": "src/templates/requesting_contacts",
"room_description": "src/templates/room_description",
"room_item": "src/templates/room_item",
"room_panel": "src/templates/room_panel",
"roster": "src/templates/roster",
"roster_item": "src/templates/roster_item",
"search_contact": "src/templates/search_contact",
"select_option": "src/templates/select_option",
"status_option": "src/templates/status_option",
"toggle_chats": "src/templates/toggle_chats",
"toolbar": "src/templates/toolbar",
"trimmed_chat": "src/templates/trimmed_chat"
}, },
tpl: { tpl: {
......
define("converse-templates", [ define("converse-templates", [
"tpl!src/templates/action", "tpl!action",
"tpl!src/templates/add_contact_dropdown", "tpl!add_contact_dropdown",
"tpl!src/templates/add_contact_form", "tpl!add_contact_form",
"tpl!src/templates/change_status_message", "tpl!change_status_message",
"tpl!src/templates/chat_status", "tpl!chat_status",
"tpl!src/templates/chatarea", "tpl!chatarea",
"tpl!src/templates/chatbox", "tpl!chatbox",
"tpl!src/templates/chatroom", "tpl!chatroom",
"tpl!src/templates/chatrooms_tab", "tpl!chatrooms_tab",
"tpl!src/templates/chats_panel", "tpl!chats_panel",
"tpl!src/templates/choose_status", "tpl!choose_status",
"tpl!src/templates/contacts_panel", "tpl!contacts_panel",
"tpl!src/templates/contacts_tab", "tpl!contacts_tab",
"tpl!src/templates/controlbox", "tpl!controlbox",
"tpl!src/templates/controlbox_toggle", "tpl!controlbox_toggle",
"tpl!src/templates/field", "tpl!field",
"tpl!src/templates/form_checkbox", "tpl!form_checkbox",
"tpl!src/templates/form_input", "tpl!form_input",
"tpl!src/templates/form_select", "tpl!form_select",
"tpl!src/templates/group_header", "tpl!group_header",
"tpl!src/templates/info", "tpl!info",
"tpl!src/templates/login_panel", "tpl!login_panel",
"tpl!src/templates/login_tab", "tpl!login_tab",
"tpl!src/templates/message", "tpl!message",
"tpl!src/templates/new_day", "tpl!new_day",
"tpl!src/templates/occupant", "tpl!occupant",
"tpl!src/templates/pending_contact", "tpl!pending_contact",
"tpl!src/templates/pending_contacts", "tpl!pending_contacts",
"tpl!src/templates/requesting_contact", "tpl!requesting_contact",
"tpl!src/templates/requesting_contacts", "tpl!requesting_contacts",
"tpl!src/templates/room_description", "tpl!room_description",
"tpl!src/templates/room_item", "tpl!room_item",
"tpl!src/templates/room_panel", "tpl!room_panel",
"tpl!src/templates/roster", "tpl!roster",
"tpl!src/templates/roster_item", "tpl!roster_item",
"tpl!src/templates/select_option", "tpl!select_option",
"tpl!src/templates/search_contact", "tpl!search_contact",
"tpl!src/templates/status_option", "tpl!status_option",
"tpl!src/templates/toggle_chats", "tpl!toggle_chats",
"tpl!src/templates/toolbar", "tpl!toolbar",
"tpl!src/templates/trimmed_chat" "tpl!trimmed_chat"
], function () { ], function () {
return { return {
action: arguments[0], action: arguments[0],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment