Can get the results of running the code
parent
bc6f6d40bd
commit
2c4b89f378
@ -0,0 +1,27 @@
|
|||||||
|
define(['underscore', 'core/model'], function CodeResultsDefine(_, Model) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
function ResultsModel() {
|
||||||
|
Model.apply(this, arguments);
|
||||||
|
}
|
||||||
|
|
||||||
|
ResultsModel.prototype = new Model();
|
||||||
|
|
||||||
|
_.extend(ResultsModel.prototype, {
|
||||||
|
defaults: function defaults() {
|
||||||
|
return {id: 0, env: ''};
|
||||||
|
},
|
||||||
|
|
||||||
|
url: function url() {
|
||||||
|
var id = this.get('id');
|
||||||
|
var env = this.get('env');
|
||||||
|
if (id < 10) {
|
||||||
|
return '/results/' + env + '/0' + id;
|
||||||
|
} else {
|
||||||
|
return '/results/' + env + '/' + id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return ResultsModel;
|
||||||
|
});
|
@ -1,4 +1,11 @@
|
|||||||
<div class="slide-{{id}}">
|
<div class="slide slide-{{id}}">
|
||||||
<div class="copy"></div>
|
<div class="copy"></div>
|
||||||
<pre><code class="language-javascript"></code></pre>
|
{{#code}}
|
||||||
|
<pre><code class="language-javascript"></code></pre>
|
||||||
|
<button class="request" data-env="phantomjs-1.9.8">phantomjs-1.9.8</button>
|
||||||
|
<button class="request" data-env="phantomjs-2.0.0">phantomjs-2.0.0</button>
|
||||||
|
<button class="request" data-env="node">node</button>
|
||||||
|
<pre><code class="stdout"></code></pre>
|
||||||
|
<pre><code class="stderr"></code></pre>
|
||||||
|
{{/code}}
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,4 +1,21 @@
|
|||||||
@import "_normalize";
|
@import "_normalize";
|
||||||
body {
|
|
||||||
|
html, body {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
$slide-width: 1280px;
|
||||||
|
$slide-height: 720px;
|
||||||
|
|
||||||
|
.deck {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slide {
|
||||||
|
width: $slide-width;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-2 {
|
||||||
background-color: #bada55;
|
background-color: #bada55;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue