Blame view

client/controllers/authenticated/header.js 590 Bytes
3b214be5e   Ryan Glover   Convert all Coffe...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  /*
  *  Controller: Header
  *  Template: /client/includes/_header.html
  */
  
  /*
  * Created
  */
  
  Template.header.created = function(){
    // Code to run when template is created goes here.
  }
  
  /*
  * Rendered
  */
  
  Template.header.rendered = function() {
    // Code to run when template is rendered goes here.
  }
  
  /*
  * Helpers
  */
  
  Template.header.helpers({
    example: function(){
      // Code to run for helper function.
    }
  });
  
  /*
  * Events
  */
  
  Template.header.events({
    'click .logout': function(){
      Meteor.logout(function(error){
        if(error){
          alert(error.reason);
        }
      });
    }
  });