Skip to content
This repository has been archived by the owner on Jun 16, 2020. It is now read-only.

Commit

Permalink
Merge pull request #142 from pungoyal/master
Browse files Browse the repository at this point in the history
fixing multi_json 1.3.2 issue #140
  • Loading branch information
johnbintz committed Apr 18, 2012
2 parents 724541a + a89682f commit 6513718
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vendor/assets/javascripts/intense.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ window.Intense = {
methods:
foreground: (color) ->
if Intense.useColors
"\033[3#{Intense.colors[color]}m#{this}\033[0m"
"\x33[3#{Intense.colors[color]}m#{this}\x33[0m"
else
this
bright: ->
if Intense.useColors
"\033[1m#{this}\033[0m"
"\x33[1m#{this}\x33[0m"
else
this
useColors: true
moveBack: (count = 1) -> "\033[#{count}D"
moveBack: (count = 1) -> "\x33[#{count}D"
}

for method, code of Intense.methods
Expand Down

0 comments on commit 6513718

Please sign in to comment.