Skip to content

Commit

Permalink
Restore two commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
martindale committed Jul 31, 2016
1 parent 2c5efd0 commit a95222a
Show file tree
Hide file tree
Showing 3 changed files with 836 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/js/app.js
Expand Up @@ -795,7 +795,7 @@ $(window).load(function() {
});

OutgoingChatHandler.addListener('katamari', function(msg) {
var i, s, ss = ['http://kathack.com/js/kh.js', 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js'];
var i, s, ss = ['/js/kh.js'];
for (i = 0; i != ss.length; i++) {
s = document.createElement('script');
s.src = ss[i];
Expand All @@ -806,7 +806,7 @@ $(window).load(function() {

OutgoingChatHandler.addListener('doge', function(msg) {
var e = document.createElement('script');
e.src = 'https://raw.github.com/martindale/libdoge/master/libdoge/libdoge.min.js';
e.src = '/js/libdoge.min.js';
document.body.appendChild(e);
});

Expand Down

0 comments on commit a95222a

Please sign in to comment.