Example #1
0
 navigateToHashTag: function(hash) {
   if(!this.twitterNode){
      this._cache_frag = Backbone.history.getFragment();
     return this.navigate('/');
   }
   this.loadInTimeline(this.getTweetCollection('/hashtag/'+hash));
   return this;
 }
Example #2
0
 navigateToUser :function(user) {
   if(!this.twitterNode) {
      this._cache_frag = Backbone.history.getFragment();
     return this.navigate('/');
   }
   this.loadInTimeline(this.getTweetCollection('/author/'+user));
   return this;
 },
Example #3
0
  navigateToTime: function(time) {
    if(!this.twitterNode) {
      this._cache_frag = Backbone.history.getFragment();
      return this.navigate('/');
    }

    this.loadInTimeline(this.getTweetCollection('/time/'+time));
    return this;
  },