(no commit message)
authoralison benjamin <radiocontrolled@gmail.com>
Mon, 27 Jun 2011 23:00:14 +0000 (23:00 -0000)
committeralison benjamin <radiocontrolled@gmail.com>
Mon, 27 Jun 2011 23:00:14 +0000 (23:00 -0000)
docs/themes/mobile/admin/courses/courses.tmpl.php

index 799837b..a965e74 100644 (file)
@@ -32,8 +32,8 @@
 <?php print_paginator($this->page, $this->num_results, $this->page_string . SEP . $this->order .'='. $col, $this->results_per_page); ?>
 
 <form name="form" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
-
-<table class="data" summary="" rules="cols">
+<div class="table-surround">
+<table class="data" summary="Course title, instructor, and enrollment." >
 <colgroup>
        <?php if ($col == 'title'): ?>
                <col />
@@ -80,7 +80,7 @@
 <tbody>
 <?php if ($this->num_rows): ?>
        <?php while ($row = mysql_fetch_assoc($this->result)): ?>
-               <tr onmousedown="document.form['m<?php echo $row['course_id']; ?>'].checked = true; rowselect(this);" id="r_<?php echo $row['course_id']; ?>">
+               <tr onkeydown="document.form['m<?php echo $row['course_id']; ?>'].checked = true; rowselect(this);" onmousedown="document.form['m<?php echo $row['course_id']; ?>'].checked = true; rowselect(this);" id="r_<?php echo $row['course_id']; ?>">
                        <td><input type="radio" name="id" value="<?php echo $row['course_id']; ?>" id="m<?php echo $row['course_id']; ?>" /></td>
                        <td><label for="m<?php echo $row['course_id']; ?>"><?php echo AT_print($row['title'], 'courses.title'); ?></label></td>
                        <td><?php echo AT_print($row['login'],'members.login'); ?></td>
@@ -98,4 +98,5 @@
 <?php endif; ?>
 </tbody>
 </table>
+</div>
 </form>
\ No newline at end of file