Skip to content

Commit

Permalink
correct the default code
Browse files Browse the repository at this point in the history
revise layout
  • Loading branch information
siuying committed Apr 18, 2012
1 parent df8136d commit b0ce4f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions public/css/app.css
Expand Up @@ -7,10 +7,10 @@
.right {
position: absolute;
left: 500px;
width: 400px;
width: 800px;
height: 100%;
}

#output {
font-size: 1.4em;
font-size: 1.2em;
}
6 changes: 3 additions & 3 deletions views/index.erb
Expand Up @@ -20,11 +20,11 @@
<div class="row-fluid">
<div class="left">
<div id="editor">def binary_search(search, array)
low = 0
high = array.length - 1
low = 0
high = array.length - 1
end

binary_search('a', ['a', 'b', 'c', 'd', 'e', 'f'])</div>
binary_search('c', ['a', 'b', 'c', 'd', 'e', 'f'])</div>
</div>
<div class="right">
<pre id="output">
Expand Down

0 comments on commit b0ce4f2

Please sign in to comment.