Merge pull request #142 from pungoyal/master
fixing multi_json 1.3.2 issue #140
This commit is contained in:
commit
65137186c8
6
vendor/assets/javascripts/intense.coffee
vendored
6
vendor/assets/javascripts/intense.coffee
vendored
@ -11,16 +11,16 @@ window.Intense = {
|
|||||||
methods:
|
methods:
|
||||||
foreground: (color) ->
|
foreground: (color) ->
|
||||||
if Intense.useColors
|
if Intense.useColors
|
||||||
"\033[3#{Intense.colors[color]}m#{this}\033[0m"
|
"\x33[3#{Intense.colors[color]}m#{this}\x33[0m"
|
||||||
else
|
else
|
||||||
this
|
this
|
||||||
bright: ->
|
bright: ->
|
||||||
if Intense.useColors
|
if Intense.useColors
|
||||||
"\033[1m#{this}\033[0m"
|
"\x33[1m#{this}\x33[0m"
|
||||||
else
|
else
|
||||||
this
|
this
|
||||||
useColors: true
|
useColors: true
|
||||||
moveBack: (count = 1) -> "\033[#{count}D"
|
moveBack: (count = 1) -> "\x33[#{count}D"
|
||||||
}
|
}
|
||||||
|
|
||||||
for method, code of Intense.methods
|
for method, code of Intense.methods
|
||||||
|
Loading…
Reference in New Issue
Block a user