Skip to content

Commit

Permalink
Remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Laux committed Jan 20, 2017
1 parent 69594c4 commit 54bd2cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions chrome_plugin/loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ function load_scripts(script_list) {
s.src = chrome.extension.getURL(name);

var remove_self = function() {
console.log('Remove self');
console.log(remove_self['script_list']);
//console.log('Remove self');
//console.log(remove_self['script_list']);
var script_list = remove_self['script_list'] || [];
if (script_list.length > 0) {
load_scripts(script_list);
Expand Down
2 changes: 1 addition & 1 deletion chrome_plugin/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ KC = {

replace_kingdom_text: function() {
if (KC.config.do_replace_kingdom_text) {
console.log('replace_kingdom_text');
//console.log('replace_kingdom_text');
$('.modded-text-overlay').remove();

$('[type="kingdom"]>.mini-card-art').css('background-color', 'white').css('background-image', '').toArray().forEach(e => {
Expand Down

0 comments on commit 54bd2cd

Please sign in to comment.