Skip to content

Commit

Permalink
Cleanup files
Browse files Browse the repository at this point in the history
  • Loading branch information
satya164 committed Apr 2, 2015
1 parent 5292bd2 commit c7ab9e1
Show file tree
Hide file tree
Showing 24 changed files with 9 additions and 1,910 deletions.
35 changes: 0 additions & 35 deletions compatibility/compatibility.js

This file was deleted.

82 changes: 0 additions & 82 deletions facebook/facebook-am-client.js

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
var core = new (require('ebus'))();
var assert = require('assert');
var config = require('../server-config-defaults.js');
require('./recommendation.js')(core, config.recommendation);
describe('Recommendation tests', function() {
require('./featured.js')(core, config.featured);
describe('Featured tests', function() {

it("getRooms API: (get featured rooms)", function(done) {
core.emit("getRooms", {featured: true}, function(err, results) {
Expand Down
File renamed without changes.
7 changes: 4 additions & 3 deletions github/github-client.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
/* jshint browser: true */

module.exports = function(core) {
core.on('user-menu', function(menu, next) {
core.on("user-menu", function(menu, next) {
menu.items.reportissue = {
text: 'Report Issue',
text: "Report Issue",
prio: 600,
action: function() {
window.open('https://github.com/scrollback/scrollback/issues', "_blank");
window.open("https://github.com/scrollback/scrollback/issues", "_blank");
}
};

next();
}, 1000);
};
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ or write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA.
*/

var plugins = ["validator","browserid-auth", "facebook", "recommendation", "anti-abuse",
var plugins = ["validator","browserid-auth", "facebook", "featured", "anti-abuse",
"threader", "thread-color", "authorizer", "redis-storage", "storage",
"entityloader", "irc", "twitter", "jws", "censor", "email", "superuser", "search", "sitemap",
"push-notification", "google"];
Expand Down
Loading

0 comments on commit c7ab9e1

Please sign in to comment.