Commit 29bd6455 by Vik Paruchuri

Get table to take up the width of the page

parent b6ff513e
...@@ -60,6 +60,10 @@ div.problemwrapper { ...@@ -60,6 +60,10 @@ div.problemwrapper {
border-radius: 5px; border-radius: 5px;
} }
.statustable{
width: 750px;
}
.status-container .status-container
{ {
padding-bottom: 5px; padding-bottom: 5px;
......
...@@ -196,8 +196,6 @@ class @CombinedOpenEnded ...@@ -196,8 +196,6 @@ class @CombinedOpenEnded
@out_of_sync_message = 'The problem state got out of sync. Try reloading the page.' @out_of_sync_message = 'The problem state got out of sync. Try reloading the page.'
@get_last_response()
if @task_number>1 if @task_number>1
@prompt_hide() @prompt_hide()
else if @task_number==1 and @child_state!='initial' else if @task_number==1 and @child_state!='initial'
...@@ -269,7 +267,6 @@ class @CombinedOpenEnded ...@@ -269,7 +267,6 @@ class @CombinedOpenEnded
data = {} data = {}
$.postWithPrefix "#{@ajax_url}/get_last_response", data, (response) => $.postWithPrefix "#{@ajax_url}/get_last_response", data, (response) =>
if response.success if response.success
console.log(response)
console.log(response.response) console.log(response.response)
message_post: (event)=> message_post: (event)=>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
</div> </div>
<div class="problemwrapper"> <div class="problemwrapper">
<div class="status-bar"> <div class="status-bar">
<table> <table class="statustable">
<tr> <tr>
<td class="problemtype-container"> <td class="problemtype-container">
<div class="problemtype"> <div class="problemtype">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment