Skip to content

Commit

Permalink
Site updated to e54fc60
Browse files Browse the repository at this point in the history
adambeynon committed Dec 18, 2013
1 parent 9fc52ab commit f842adf
Showing 3 changed files with 303 additions and 0 deletions.
242 changes: 242 additions & 0 deletions javascripts/playground-rspec.js

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions javascripts/rspec_results.js

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions rspec/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<link href="../stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" />
<script src="../javascripts/playground-rspec.js" type="text/javascript"></script>
<style>
.CodeMirror { height: 100% !important; }
.CodeMirror-scroll { height: 100% !important; }
</style>
</head>
<body>
<nav class='navbar navbar-default'>
<div class='navbar-header'>
<a class='navbar-brand'>Opal Playground - RSpec</a>
</div>
<div class='container'>
<div class='collapse navbar-collapse'>
<ul class='nav navbar-nav'>
<li>
<button class='btn btn-primary' id='run-code'>
Run Code (Cmd+Enter)
</button>
</li>
</ul>
</div>
</div>
</nav>
<div class='row'>
<div class='col-md-6' style='height: 100%'>
<div class='top-pane' id='ruby_pane' style='height: 100%'></div>
</div>
<div class='col-md-6'>
<div class='top-pane' id='result_pane' style='height: 100%'>
<iframe frameborder='0' id='result-frame' style='width: 100%; height: 100%'></iframe>
</div>
</div>
</div>
</body>
</html>

0 comments on commit f842adf

Please sign in to comment.