diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-12-04 20:33:41 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-12-04 20:33:41 -0500 |
commit | d41a0a5ed03b2f4bbf8e8b3984960103383090d1 (patch) | |
tree | 8a2802ecbd0711090dc7bcd6f94ee64bf21b7949 | |
parent | 675e32ac9ac1bdcfbb6e293eb363d2b592140ae7 (diff) |
Use inlineScript() instead of element() to write inline javascript
-rw-r--r-- | lib/htmloutputter.php | 7 | ||||
-rw-r--r-- | plugins/MobileProfile/MobileProfilePlugin.php | 3 |
2 files changed, 3 insertions, 7 deletions
diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index a88a5b82c..cf93944e7 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -477,13 +477,10 @@ class HTMLOutputter extends XMLOutputter */ function autofocus($id) { - $this->elementStart('script', array('type' => 'text/javascript')); - $this->raw('/*<![CDATA[*/'. + $this->inlineScript( ' $(document).ready(function() {'. ' var el = $("#' . $id . '");'. ' if (el.length) { el.focus(); }'. - ' });'. - ' /*]]>*/'); - $this->elementEnd('script'); + ' });'); } } diff --git a/plugins/MobileProfile/MobileProfilePlugin.php b/plugins/MobileProfile/MobileProfilePlugin.php index 8b5e5f31d..35678bedd 100644 --- a/plugins/MobileProfile/MobileProfilePlugin.php +++ b/plugins/MobileProfile/MobileProfilePlugin.php @@ -352,8 +352,7 @@ class MobileProfilePlugin extends WAP20Plugin $contentLimit = Notice::maxContent(); - $form->out->element('script', array('type' => 'text/javascript'), - 'maxLength = ' . $contentLimit . ';'); + $form->out->inlineScript('maxLength = ' . $contentLimit . ';'); if ($contentLimit > 0) { $form->out->element('div', array('id' => 'notice_text-count'), |