/**
* Plugin Name: GLM Simple Messageboard
* Description: Option Setting for displaying two fields; a name and a message
- * Version: 1.0.10
+ * Version: 1.0.11
* Author: Gaslight Media
* Author URI: http://www.gaslightmedia.com
* License: All right reserved
-<textarea class='message' cols="40" maxlength="270" rows="5" name="glmsimplemessageboard_settings[<?php echo $fieldName;?>]"><?php echo htmlspecialchars($options[$fieldName]); ?></textarea>
+<textarea class='message' cols="40" maxlength="220" rows="5" name="glmsimplemessageboard_settings[<?php echo $fieldName;?>]"><?php echo htmlspecialchars($options[$fieldName]); ?></textarea>
<br><span class="countdown"></span>
<script type="text/javascript">
function updateCountdown() {
- // 140 is the max message length
- var remaining = 270 - jQuery('.message').val().length;
+ // 220 is the max message length
+ var remaining = 220 - jQuery('.message').val().length;
jQuery('.countdown').text(remaining + ' characters remaining.');
}
jQuery(document).ready(function($) {