diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2013-01-26 03:31:05 -0600 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2013-01-26 03:31:05 -0600 |
commit | 5dfe3b8c21ca79300a1851d7658f8aa389b2733f (patch) | |
tree | cec57fbb05666de1fecefe23de00e9d54ac1e50c /pages/admin.php | |
parent | d7b0c04459a6ec42a37255c38d67cea14fb60e61 (diff) | |
download | pathery-5dfe3b8c21ca79300a1851d7658f8aa389b2733f.tar.xz |
BUGFIX: Clicking the 'mute' button doesn't save across all maps until page is refreshed
Diffstat (limited to 'pages/admin.php')
-rw-r--r-- | pages/admin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/admin.php b/pages/admin.php index dddacaa..e6c0164 100644 --- a/pages/admin.php +++ b/pages/admin.php @@ -203,7 +203,7 @@ function createThumbnail($mapMatrix, $idprefix, $width, $height) { <input type='radio' name='$idprefix,speed' id='$idprefix,spdslow' checked=true />
<input type='radio' name='$idprefix,speed' id='$idprefix,spdmed' />
<input type='radio' name='$idprefix,speed' id='$idprefix,spdfast' />
- <input type='checkbox' id='$idprefix,mute' checked=true />
+ <input type='checkbox' id='$idprefix,mute' checked=true class='checkbox_mute' />
</div>
";
$output .= $mapdatadiv;
@@ -244,7 +244,7 @@ function createThumbnail($mapMatrix, $idprefix, $width, $height) { </div>
<div class='grid_dsp_mid dsp_16'>
- <label><input type='checkbox' id='$idprefix,mute' />Mute</label>
+ <label><input type='checkbox' id='$idprefix,mute' class='checkbox_mute' />Mute</label>
</div>
<div id='$idprefix,dspbr' class='grid_dsp_right dsp_33'>
|