2017-03-18 11:21:18 +02:00
|
|
|
"use strict";
|
|
|
|
|
2016-12-18 17:53:28 +02:00
|
|
|
module.exports = {
|
|
|
|
actions: {
|
|
|
|
action: require("./actions/action.tpl"),
|
2017-07-10 09:01:20 -07:00
|
|
|
away: require("./actions/away.tpl"),
|
|
|
|
back: require("./actions/back.tpl"),
|
2017-04-22 13:51:21 +01:00
|
|
|
ban_list: require("./actions/ban_list.tpl"),
|
2016-12-18 17:53:28 +02:00
|
|
|
channel_list: require("./actions/channel_list.tpl"),
|
2017-09-19 18:22:50 +03:00
|
|
|
chghost: require("./actions/chghost.tpl"),
|
2016-12-18 17:53:28 +02:00
|
|
|
ctcp: require("./actions/ctcp.tpl"),
|
|
|
|
invite: require("./actions/invite.tpl"),
|
|
|
|
join: require("./actions/join.tpl"),
|
|
|
|
kick: require("./actions/kick.tpl"),
|
|
|
|
mode: require("./actions/mode.tpl"),
|
|
|
|
nick: require("./actions/nick.tpl"),
|
|
|
|
part: require("./actions/part.tpl"),
|
|
|
|
quit: require("./actions/quit.tpl"),
|
|
|
|
topic: require("./actions/topic.tpl"),
|
|
|
|
topic_set_by: require("./actions/topic_set_by.tpl"),
|
|
|
|
whois: require("./actions/whois.tpl"),
|
|
|
|
},
|
|
|
|
|
2017-08-27 20:55:00 -04:00
|
|
|
windows: {
|
|
|
|
sign_in: require("./windows/sign_in.tpl"),
|
2017-11-04 19:19:12 +02:00
|
|
|
settings: require("./windows/settings.tpl"),
|
|
|
|
connect: require("./windows/connect.tpl"),
|
2017-11-12 20:00:34 +02:00
|
|
|
help: require("./windows/help.tpl"),
|
2017-08-27 20:55:00 -04:00
|
|
|
},
|
|
|
|
|
2016-12-18 17:53:28 +02:00
|
|
|
chan: require("./chan.tpl"),
|
|
|
|
chat: require("./chat.tpl"),
|
|
|
|
contextmenu_divider: require("./contextmenu_divider.tpl"),
|
|
|
|
contextmenu_item: require("./contextmenu_item.tpl"),
|
|
|
|
date_marker: require("./date-marker.tpl"),
|
|
|
|
msg: require("./msg.tpl"),
|
|
|
|
msg_action: require("./msg_action.tpl"),
|
2017-08-06 12:35:01 -04:00
|
|
|
msg_condensed_toggle: require("./msg_condensed_toggle.tpl"),
|
2017-06-22 21:08:36 +01:00
|
|
|
msg_condensed: require("./msg_condensed.tpl"),
|
2017-06-26 12:01:55 +03:00
|
|
|
msg_preview: require("./msg_preview.tpl"),
|
2017-07-06 03:35:54 -04:00
|
|
|
msg_preview_toggle: require("./msg_preview_toggle.tpl"),
|
2016-12-18 17:53:28 +02:00
|
|
|
msg_unhandled: require("./msg_unhandled.tpl"),
|
|
|
|
network: require("./network.tpl"),
|
2017-07-12 02:55:41 -04:00
|
|
|
image_viewer: require("./image_viewer.tpl"),
|
2017-12-12 20:52:26 -08:00
|
|
|
join_channel: require("./join_channel.tpl"),
|
2017-08-15 12:44:29 +03:00
|
|
|
session: require("./session.tpl"),
|
2016-12-18 17:53:28 +02:00
|
|
|
unread_marker: require("./unread_marker.tpl"),
|
|
|
|
user: require("./user.tpl"),
|
2017-01-28 19:37:26 +02:00
|
|
|
user_filtered: require("./user_filtered.tpl"),
|
2017-06-22 13:27:11 +03:00
|
|
|
user_name: require("./user_name.tpl"),
|
2016-12-18 17:53:28 +02:00
|
|
|
};
|