fixed many things and added search
This commit is contained in:
parent
c6220b1dc1
commit
cbc6755791
10 changed files with 128 additions and 75 deletions
|
@ -2,10 +2,11 @@ define([
|
|||
"helper/HostApp",
|
||||
"controller/Timeline",
|
||||
"lib/URI",
|
||||
"helper/Paths"
|
||||
"helper/Paths",
|
||||
"helper/Core"
|
||||
],
|
||||
|
||||
function(HostApp, Timeline, URI, Paths) {
|
||||
function(HostApp, Timeline, URI, Paths, Core) {
|
||||
|
||||
|
||||
function Mentions() {
|
||||
|
@ -23,6 +24,14 @@ function(HostApp, Timeline, URI, Paths) {
|
|||
|
||||
Mentions.prototype = Object.create(Timeline.prototype);
|
||||
|
||||
Mentions.prototype.show = function() {
|
||||
Core.prototype.show.call(this, this.body);
|
||||
}
|
||||
|
||||
Mentions.prototype.hide = function() {
|
||||
Core.prototype.hide.call(this, this.body);
|
||||
}
|
||||
|
||||
|
||||
Mentions.prototype.newStatus = function(statuses) {
|
||||
|
||||
|
|
Reference in a new issue