summaryrefslogtreecommitdiffstats
path: root/client/lib/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/lib/utils.js')
-rw-r--r--client/lib/utils.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/client/lib/utils.js b/client/lib/utils.js
index 9e92e999..7c117d4b 100644
--- a/client/lib/utils.js
+++ b/client/lib/utils.js
@@ -18,18 +18,6 @@ Utils = {
};
},
- Warning: {
- get: function() {
- return Session.get('warning');
- },
- open: function(desc) {
- Session.set('warning', { desc: desc });
- },
- close: function() {
- Session.set('warning', false);
- }
- },
-
// XXX We should remove these two methods
goBoardId: function(_id) {
var board = Boards.findOne(_id);
@@ -49,12 +37,6 @@ Utils = {
});
},
- liveEvent: function(events, callback) {
- $(document).on(events, function() {
- callback($(this));
- });
- },
-
capitalize: function(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
},