1
0

Maintenance: type attribute is obsolete for script elements in HTML5.

This commit is contained in:
Matthias Mees
2013-06-15 19:37:10 +02:00
parent 0dfdb3af4e
commit 7a8b5e755f
4 changed files with 9 additions and 10 deletions

View File

@@ -100,7 +100,8 @@
</div> </div>
</fieldset> </fieldset>
</form> </form>
<script type="text/javascript">
<script>
$(document).ready(function() { $(document).ready(function() {
{foreach $filter_import AS $f_import} {foreach $filter_import AS $f_import}
SetCookie("entrylist_filter_{$f_import}", "{$get_filter_{$f_import}}" ) SetCookie("entrylist_filter_{$f_import}", "{$get_filter_{$f_import}}" )

View File

@@ -52,7 +52,7 @@
<script src="{serendipity_getFile file='admin/js/modernizr-2.6.2.min.js'}"></script> <script src="{serendipity_getFile file='admin/js/modernizr-2.6.2.min.js'}"></script>
<script src="{serendipity_getFile file='YahooUI/treeview/YAHOO.js'}"></script> <script src="{serendipity_getFile file='YahooUI/treeview/YAHOO.js'}"></script>
<script src="{serendipity_getFile file='YahooUI/treeview/treeview.js'}"></script> <script src="{serendipity_getFile file='YahooUI/treeview/treeview.js'}"></script>
<script type="text/javascript" src="{$serendipityHTTPPath}serendipity_define.js.php"></script> <script src="{$serendipityHTTPPath}serendipity_define.js.php"></script>
{serendipity_hookPlugin hook="backend_header" hookAll="true"} {serendipity_hookPlugin hook="backend_header" hookAll="true"}
<script src="{serendipity_getFile file='admin/serendipity_editor.js'}"></script> <script src="{serendipity_getFile file='admin/serendipity_editor.js'}"></script>
<script> <script>

View File

@@ -139,7 +139,7 @@
<input name="go" type="submit" value="{$CONST.GO}"> <input name="go" type="submit" value="{$CONST.GO}">
</div> </div>
</fieldset> </fieldset>
<script type="text/javascript"> <script>
$(document).ready(function() { $(document).ready(function() {
{foreach $media.sortParams AS $sortParam} {foreach $media.sortParams AS $sortParam}
SetCookie("sortorder_{$sortParam}","{$get_sortorder_{$sortParam}}" ) SetCookie("sortorder_{$sortParam}","{$get_sortorder_{$sortParam}}" )

View File

@@ -1,5 +1,5 @@
{if $init} {if $init}
<script type="text/javascript"> <script>
_editor_url = "{$serendipityHTTPPath}htmlarea/"; _editor_url = "{$serendipityHTTPPath}htmlarea/";
_editor_lang = "{if $xinha}{$lang}{else}{$CONST.WYSIWYG_LANG}{/if}"; _editor_lang = "{if $xinha}{$lang}{else}{$CONST.WYSIWYG_LANG}{/if}";
_editor_skin = "silva"; _editor_skin = "silva";
@@ -7,15 +7,13 @@
</script> </script>
{if $xinha} {if $xinha}
<script type="text/javascript" src="htmlarea/XinhaCore.js"></script> <script src="htmlarea/XinhaCore.js"></script>
<script type="text/javascript" src="{$xinha_custom}"></script> <script src="{$xinha_custom}"></script>
{else} {else}
<script type="text/javascript" src="htmlarea/htmlarea.js"></script> <script src="htmlarea/htmlarea.js"></script>
{/if} {/if}
{/if} {/if}
<script>
<script type="text/javascript">
// IF you want to enable HTMLArea's spellchecker, download the SpellChecker plugin from the HTMLArea homepage // IF you want to enable HTMLArea's spellchecker, download the SpellChecker plugin from the HTMLArea homepage
// (http://www.sourceforge.net/projects/itools-htmlarea) and uncomment the lines suffixed with ' // [SPELLCHECK]' // (http://www.sourceforge.net/projects/itools-htmlarea) and uncomment the lines suffixed with ' // [SPELLCHECK]'
// Note that the SpellChecker is a CGI-based application which needs setup in your Apache host ("Options +CGIExec") // Note that the SpellChecker is a CGI-based application which needs setup in your Apache host ("Options +CGIExec")