Browse Source

my message

MOODLE_20_STABLE
bdaloukas 12 years ago
parent
commit
eb90fd20d3
  1. 4
      cross/play.php
  2. 4
      version.php

4
cross/play.php

@ -150,7 +150,7 @@ padding: .75em;
width: 240pt; width: 240pt;
} }
.box { .gamebox {
border-style: solid; border-style: solid;
border-width: 1pt; border-width: 1pt;
cursor: pointer; cursor: pointer;
@ -416,7 +416,7 @@ if (document.getElementById("waitmessage") != null)
{ {
if (TableAcrossWord[x][y] >= 0 || TableDownWord[x][y] >= 0) if (TableAcrossWord[x][y] >= 0 || TableDownWord[x][y] >= 0)
{ {
document.write("<td id=\"c" + PadNumber(x) + PadNumber(y) + "\" class=\"box boxnormal_unsel\" onclick=\"SelectThisWord(event);\">"); document.write("<td id=\"c" + PadNumber(x) + PadNumber(y) + "\" class=\"gamebox boxnormal_unsel\" onclick=\"SelectThisWord(event);\">");
if( solu[x][y] != '') if( solu[x][y] != '')
document.write( solu[x][y]); document.write( solu[x][y]);

4
version.php

@ -11,7 +11,7 @@
defined('MOODLE_INTERNAL') || die(); defined('MOODLE_INTERNAL') || die();
$module->component = 'mod_game'; // Full name of the plugin (used for diagnostics) $module->component = 'mod_game'; // Full name of the plugin (used for diagnostics)
$module->version = 2013072601; // The current module version (Date: YYYYMMDDXX) $module->version = 2013072602; // The current module version (Date: YYYYMMDDXX)
$module->requires = 2010112400; // Requires Moodle 2.0 $module->requires = 2010112400; // Requires Moodle 2.0
$module->cron = 0; // Period for cron to check this module (secs) $module->cron = 0; // Period for cron to check this module (secs)
$module->release = '3.7.26'; $module->release = '3.7.26.2';

Loading…
Cancel
Save