Joined January 2013
·
Posted to
IE Virtual Machines
over 1 year
ago
You can also use some online service like BrowserStack which saves you some setup time.
Achievements
123 Karma
2,539 Total ProTip Views
Epidexipteryx
Have at least one original repo where C++ is the dominant language
Mongoose 3
Have at least three original repos where Ruby is the dominant language
Raven
Have at least one original repo where some form of shell script is the dominant language
Mongoose
Have at least one original repo where Ruby is the dominant language
Nephila Komaci
Have at least one original repos where PHP is the dominant language
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Forked
Have a project valued enough to be forked by someone else
Charity
Fork and commit to someone's open source project in need
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
It is easier to have a fallback for browsers that don't support console.log by adding following code:
var alertFallback = true;
if (typeof console === "undefined" || typeof console.log === "undefined") {
console = {};
if (alertFallback) {
console.log = function(msg) {
alert(msg);
};
} else {
console.log = function() {};
}
}
This keeps your code DRY and much more managable.