Replaced deprecated octal literal with hexadecimal

Octal literals are deprecated in JavaScript 1.5 and Gjs were generating
warnings because of them.
This commit is contained in:
Kristóf Marussy
2013-01-16 14:35:17 +01:00
committed by Sheel Choksi
parent 666e9c341e
commit 4350045d61
2 changed files with 6 additions and 6 deletions

View File

@@ -15,10 +15,10 @@ getJasmineRequireObj().ConsoleReporter = function() {
failedSpecs = [],
pendingCount,
ansi = {
green: '\033[32m',
red: '\033[31m',
yellow: '\033[33m',
none: '\033[0m'
green: '\x1B[32m',
red: '\x1B[31m',
yellow: '\x1B[33m',
none: '\x1B[0m'
};
this.jasmineStarted = function() {