summaryrefslogtreecommitdiff
path: root/web-ui/app/js
diff options
context:
space:
mode:
authorPatrick Maia <pixelated-team+patrick@thoughtworks.com>2014-08-08 17:51:33 -0300
committerPatrick Maia <patrickjourdanmaia@gmail.com>2014-08-08 17:51:33 -0300
commit97e762a0832593031ae71ab1e11d4c0e377a00f4 (patch)
tree213e835f4effbaf97f0922e5941065b1329d0501 /web-ui/app/js
parentf22a6a32e901f52b2b3f2b3fd8625c43302ff001 (diff)
replaces Smail by Pixelated in all js files
Diffstat (limited to 'web-ui/app/js')
-rw-r--r--web-ui/app/js/dispatchers/right_pane_dispatcher.js2
-rw-r--r--web-ui/app/js/mail_view/ui/forward_box.js2
-rw-r--r--web-ui/app/js/mail_view/ui/mail_actions.js2
-rw-r--r--web-ui/app/js/mail_view/ui/mail_view.js2
-rw-r--r--web-ui/app/js/mail_view/ui/reply_box.js2
-rw-r--r--web-ui/app/js/main.js4
-rw-r--r--web-ui/app/js/mixins/with_enable_disable_on_event.js2
-rw-r--r--web-ui/app/js/search/results_highlighter.js2
-rw-r--r--web-ui/app/js/search/search_trigger.js2
-rw-r--r--web-ui/app/js/services/mail_service.js2
-rw-r--r--web-ui/app/js/views/templates.js42
11 files changed, 32 insertions, 32 deletions
diff --git a/web-ui/app/js/dispatchers/right_pane_dispatcher.js b/web-ui/app/js/dispatchers/right_pane_dispatcher.js
index 3e62e581..834fc795 100644
--- a/web-ui/app/js/dispatchers/right_pane_dispatcher.js
+++ b/web-ui/app/js/dispatchers/right_pane_dispatcher.js
@@ -1,4 +1,4 @@
-/*global Smail */
+/*global Pixelated */
define(
[
diff --git a/web-ui/app/js/mail_view/ui/forward_box.js b/web-ui/app/js/mail_view/ui/forward_box.js
index e112b43d..befd7a32 100644
--- a/web-ui/app/js/mail_view/ui/forward_box.js
+++ b/web-ui/app/js/mail_view/ui/forward_box.js
@@ -1,4 +1,4 @@
-/*global Smail */
+/*global Pixelated */
/*global _ */
define(
diff --git a/web-ui/app/js/mail_view/ui/mail_actions.js b/web-ui/app/js/mail_view/ui/mail_actions.js
index dc16ea9f..653b5c26 100644
--- a/web-ui/app/js/mail_view/ui/mail_actions.js
+++ b/web-ui/app/js/mail_view/ui/mail_actions.js
@@ -1,4 +1,4 @@
-/*global Smail */
+/*global Pixelated */
/*global _ */
define(
diff --git a/web-ui/app/js/mail_view/ui/mail_view.js b/web-ui/app/js/mail_view/ui/mail_view.js
index 33eb71d9..149a7f13 100644
--- a/web-ui/app/js/mail_view/ui/mail_view.js
+++ b/web-ui/app/js/mail_view/ui/mail_view.js
@@ -1,4 +1,4 @@
-/*global Smail */
+/*global Pixelated */
/*global _ */
/*global Bloodhound */
diff --git a/web-ui/app/js/mail_view/ui/reply_box.js b/web-ui/app/js/mail_view/ui/reply_box.js
index 2c39d8d6..a358fc98 100644
--- a/web-ui/app/js/mail_view/ui/reply_box.js
+++ b/web-ui/app/js/mail_view/ui/reply_box.js
@@ -1,4 +1,4 @@
-/*global Smail */
+/*global Pixelated */
/*global _ */
define(
diff --git a/web-ui/app/js/main.js b/web-ui/app/js/main.js
index 665416fc..04c58859 100644
--- a/web-ui/app/js/main.js
+++ b/web-ui/app/js/main.js
@@ -46,8 +46,8 @@ require(
],
function(compose, registry, advice, withLogging, debug, events, initializeDefault, _monkeyPatched) {
- window.Smail = window.Smail || {};
- window.Smail.events = events;
+ window.Pixelated = window.Pixelated || {};
+ window.Pixelated.events = events;
compose.mixin(registry, [advice.withAdvice, withLogging]);
diff --git a/web-ui/app/js/mixins/with_enable_disable_on_event.js b/web-ui/app/js/mixins/with_enable_disable_on_event.js
index fa574a97..ca8f1a4c 100644
--- a/web-ui/app/js/mixins/with_enable_disable_on_event.js
+++ b/web-ui/app/js/mixins/with_enable_disable_on_event.js
@@ -1,4 +1,4 @@
-/*global Smail */
+/*global Pixelated */
/*global _ */
define([],
diff --git a/web-ui/app/js/search/results_highlighter.js b/web-ui/app/js/search/results_highlighter.js
index c40f917b..79651ef4 100644
--- a/web-ui/app/js/search/results_highlighter.js
+++ b/web-ui/app/js/search/results_highlighter.js
@@ -1,4 +1,4 @@
-/*global Smail */
+/*global Pixelated */
/*global _ */
define(
diff --git a/web-ui/app/js/search/search_trigger.js b/web-ui/app/js/search/search_trigger.js
index 4f8a7a5e..b7db97d0 100644
--- a/web-ui/app/js/search/search_trigger.js
+++ b/web-ui/app/js/search/search_trigger.js
@@ -1,5 +1,5 @@
/*global _ */
-/*global Smail */
+/*global Pixelated */
define(
[
diff --git a/web-ui/app/js/services/mail_service.js b/web-ui/app/js/services/mail_service.js
index b23d569a..dab72c6f 100644
--- a/web-ui/app/js/services/mail_service.js
+++ b/web-ui/app/js/services/mail_service.js
@@ -1,5 +1,5 @@
/*global _ */
-/*global Smail */
+/*global Pixelated */
define(
[
diff --git a/web-ui/app/js/views/templates.js b/web-ui/app/js/views/templates.js
index cc120093..a59c3a5a 100644
--- a/web-ui/app/js/views/templates.js
+++ b/web-ui/app/js/views/templates.js
@@ -5,37 +5,37 @@ define(['hbs/templates'], function (templates) {
var Templates = {
compose: {
- box: window.Smail['app/templates/compose/compose_box.hbs'],
- inlineBox: window.Smail['app/templates/compose/inline_box.hbs'],
- replySection: window.Smail['app/templates/compose/reply_section.hbs'],
- recipientInput: window.Smail['app/templates/compose/recipient_input.hbs'],
- fixedRecipient: window.Smail['app/templates/compose/fixed_recipient.hbs'],
- recipients: window.Smail['app/templates/compose/recipients.hbs']
+ box: window.Pixelated['app/templates/compose/compose_box.hbs'],
+ inlineBox: window.Pixelated['app/templates/compose/inline_box.hbs'],
+ replySection: window.Pixelated['app/templates/compose/reply_section.hbs'],
+ recipientInput: window.Pixelated['app/templates/compose/recipient_input.hbs'],
+ fixedRecipient: window.Pixelated['app/templates/compose/fixed_recipient.hbs'],
+ recipients: window.Pixelated['app/templates/compose/recipients.hbs']
},
tags: {
- tagList: window.Smail['app/templates/tags/tag_list.hbs'],
- tag: window.Smail['app/templates/tags/tag.hbs'],
- tagInner: window.Smail['app/templates/tags/tag_inner.hbs'],
- shortcut: window.Smail['app/templates/tags/shortcut.hbs']
+ tagList: window.Pixelated['app/templates/tags/tag_list.hbs'],
+ tag: window.Pixelated['app/templates/tags/tag.hbs'],
+ tagInner: window.Pixelated['app/templates/tags/tag_inner.hbs'],
+ shortcut: window.Pixelated['app/templates/tags/shortcut.hbs']
},
userAlerts: {
- message: window.Smail['app/templates/user_alerts/message.hbs']
+ message: window.Pixelated['app/templates/user_alerts/message.hbs']
},
mails: {
- single: window.Smail['app/templates/mails/single.hbs'],
- fullView: window.Smail['app/templates/mails/full_view.hbs'],
- mailActions: window.Smail['app/templates/mails/mail_actions.hbs'],
- sent: window.Smail['app/templates/mails/sent.hbs']
+ single: window.Pixelated['app/templates/mails/single.hbs'],
+ fullView: window.Pixelated['app/templates/mails/full_view.hbs'],
+ mailActions: window.Pixelated['app/templates/mails/mail_actions.hbs'],
+ sent: window.Pixelated['app/templates/mails/sent.hbs']
},
mailActions: {
- actionsBox: window.Smail['app/templates/mail_actions/actions_box.hbs'],
- composeTrigger: window.Smail['app/templates/mail_actions/compose_trigger.hbs'],
- refreshTrigger: window.Smail['app/templates/mail_actions/refresh_trigger.hbs'],
- paginationTrigger: window.Smail['app/templates/mail_actions/pagination_trigger.hbs']
+ actionsBox: window.Pixelated['app/templates/mail_actions/actions_box.hbs'],
+ composeTrigger: window.Pixelated['app/templates/mail_actions/compose_trigger.hbs'],
+ refreshTrigger: window.Pixelated['app/templates/mail_actions/refresh_trigger.hbs'],
+ paginationTrigger: window.Pixelated['app/templates/mail_actions/pagination_trigger.hbs']
},
- noMessageSelected: window.Smail['app/templates/no_message_selected.hbs'],
+ noMessageSelected: window.Pixelated['app/templates/no_message_selected.hbs'],
search: {
- trigger: window.Smail['app/templates/search/search_trigger.hbs']
+ trigger: window.Pixelated['app/templates/search/search_trigger.hbs']
}
};