]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Use inlineScript() instead of element() to write inline javascript
authorCraig Andrews <candrews@integralblue.com>
Sat, 5 Dec 2009 01:33:41 +0000 (20:33 -0500)
committerCraig Andrews <candrews@integralblue.com>
Sat, 5 Dec 2009 01:33:41 +0000 (20:33 -0500)
lib/htmloutputter.php
plugins/MobileProfile/MobileProfilePlugin.php

index a88a5b82c5066523634c7f84a68ffae55d697344..cf93944e76afe19120c66dbddf124adcd422ebc6 100644 (file)
@@ -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');
+                   ' });');
     }
 }
index 8b5e5f31da6b1a08077c4cfcd160c4bc0a7854ad..35678bedd3c0599d2d7d8007eadc96c98c2dde2d 100644 (file)
@@ -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'),