mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-03 01:28:30 +00:00
3.5.152. Add support for Channel Feed. A smidgen of memes for Memeathon.
This commit is contained in:
parent
a58810e177
commit
9ead660f89
9 changed files with 306 additions and 212 deletions
|
@ -35,7 +35,7 @@ FFZ.msg_commands = {};
|
|||
|
||||
// Version
|
||||
var VER = FFZ.version_info = {
|
||||
major: 3, minor: 5, revision: 151,
|
||||
major: 3, minor: 5, revision: 152,
|
||||
toString: function() {
|
||||
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
|
||||
}
|
||||
|
@ -153,6 +153,7 @@ require('./ember/chat-input');
|
|||
//require('./ember/teams');
|
||||
require('./ember/directory');
|
||||
require('./ember/following');
|
||||
require('./ember/feed-card');
|
||||
|
||||
require('./debug');
|
||||
|
||||
|
@ -180,6 +181,7 @@ require('./ui/about_page');
|
|||
|
||||
require('./commands');
|
||||
require('./ext/api');
|
||||
//require('./memes');
|
||||
|
||||
|
||||
// ---------------
|
||||
|
@ -415,6 +417,7 @@ FFZ.prototype.init_ember = function(delay) {
|
|||
this.setup_chat_input();
|
||||
this.setup_directory();
|
||||
this.setup_profile_following();
|
||||
this.setup_feed_cards();
|
||||
|
||||
//this.setup_teams();
|
||||
|
||||
|
@ -433,6 +436,8 @@ FFZ.prototype.init_ember = function(delay) {
|
|||
this.find_bttv(10);
|
||||
this.find_emote_menu(10);
|
||||
|
||||
//this.setup_memes();
|
||||
|
||||
//this.check_news();
|
||||
this.check_ff();
|
||||
this.refresh_chat();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue