Skip to content

Commit dbd3540

Browse files
committed
refactoring
1 parent 9ec0f6d commit dbd3540

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/game/game.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@
1515
<div class="page">
1616
<div class="fragment">
1717
<textarea id="storyInput" class="storyInput" {{readonly}}>{{submission}}</textarea>
18+
</div>
1819
{{#if voting}}
1920
<label class="approved"><input type="radio" name="chosenStory"><span></span></label>
20-
</div>
21+
2122
<div class="game_instructions">Click the approve button for the submission you like the best!
2223
The submission with the most votes will be incorporated into the story!
2324
</div>

client/story/story.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template name="story">
2-
<article id = "story_content">
2+
<article class="story_content">
33
<p>{{content}}</p>
44
</article>
55
</template>

client/story/story.js

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ observe_vote_stage_ended = function() {
3333
appendSubmission = function(game_id){
3434
var winning_submission = global.get_winner(game_id).submission;
3535
console.log("appending");
36-
debugger;
3736
$('#story_content').append(winning_submission);
3837
}
3938

0 commit comments

Comments
 (0)