mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
Merged from 1.9 ::
MDL-13444 :: removed the jQuery library and use direct JavaScript instead. That's much faster. MDL-12078 :: Changed them calles from themewww to httpsthemwww (MDL-12078). MDL-13421 :: corrected left padding in admin block
This commit is contained in:
parent
f3f2468cf5
commit
6b4f1f73e9
8 changed files with 109 additions and 33 deletions
|
@ -4,13 +4,12 @@
|
|||
<?php echo $meta ?>
|
||||
<meta name="keywords" content="moodle, <?php echo $title ?> " />
|
||||
<title><?php echo $title ?></title>
|
||||
<link rel="shortcut icon" href="<?php echo $CFG->themewww .'/'. current_theme() ?>/favicon.ico" />
|
||||
<link rel="shortcut icon" href="<?php echo $CFG->httpsthemewww .'/'. current_theme() ?>/favicon.ico" />
|
||||
|
||||
<?php include($CFG->themedir.'/custom_corners/ui/chameleon.php'); ?>
|
||||
<?php include("$CFG->javascript"); ?>
|
||||
<?php include($CFG->themedir.'/custom_corners/js/jquery.php'); ?>
|
||||
|
||||
<?php
|
||||
<?php
|
||||
include($CFG->themedir.'/custom_corners/ui/chameleon.php');
|
||||
include("$CFG->javascript");
|
||||
include($CFG->themedir.'/custom_corners/js/js.php');
|
||||
|
||||
// check if page is opened within a popup window
|
||||
if (function_exists('is_in_popup')) {
|
||||
|
@ -33,10 +32,6 @@
|
|||
|
||||
//replace classlist with new one
|
||||
$bodytags = str_replace($classes[0], 'class="'.implode(' ', $classlist).'"', $bodytags);
|
||||
|
||||
|
||||
// $infooutput = '<div id="infocontent"> </div>';
|
||||
|
||||
?>
|
||||
</head>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue