Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
845668 - removing console.log usage from js, which cause FF3.6 failures
Firefox 3.6 notoriously does not play nice with console.log. In the case
of 845668, it caused the behavior of adding a system to a system
group to fail without any noticable errors.
The katello js had 3 instances of console.log actively included. Since
each of those cases looks more to be there for 'debugging' purposes, I have
removed them.
If they are *really* needed, we can add them back with some protection
around them. An example might be:
if ( typeof console !== "undefined" && console.error && console.warn ) {
console.log(element.label);
}- Loading branch information
1 parent
d2ac06a
commit f905090
Showing
3 changed files
with
0 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters