-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
9fc52ab
commit f842adf
Showing
3 changed files
with
303 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |