diff options
| author | Chad Kieffer <chad@2tbsp.com> | 2008-12-07 04:49:26 +0000 |
|---|---|---|
| committer | Chad Kieffer <chad@2tbsp.com> | 2008-12-07 04:49:26 +0000 |
| commit | 36cda412f48ada1a059523685094687b9c02f3b8 (patch) | |
| tree | 4ee21dd6d100a2b239352a56230e04bd8dba986b /themes/default/views/page.html.php | |
| parent | 9bfeb413abce88d9f47a819dea24d8526ec45a80 (diff) | |
First go around at reusable modal dialogs. Moved jQuery UI CSS into screen.css, moved default theme JS to js folder. Named jQuery UI files to match the file names as they distribute them. Removed accordion, it's not used yet.
Diffstat (limited to 'themes/default/views/page.html.php')
| -rw-r--r-- | themes/default/views/page.html.php | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php index facca070..0eac17e7 100644 --- a/themes/default/views/page.html.php +++ b/themes/default/views/page.html.php @@ -17,15 +17,14 @@ media="screen,print,projection" /> <script src="<?= url::file("lib/jquery.js") ?>" type="text/javascript"></script> <script src="<?= url::file("lib/jquery.form.js") ?>" type="text/javascript"></script> - <!-- this stuff will likely be integrated into lib, possibly theme css --> - <link rel="stylesheet" type="text/css" href="<?= $theme->url("jquery/jquery.ui.css") ?>" - media="screen,print,projection" /> - <script src="<?= $theme->url("jquery/jquery.ui.js") ?>" type="text/javascript"></script> - <script src="<?= $theme->url("jquery/jquery.ui.tabs.js") ?>" type="text/javascript"></script> - <!--script src="<?= $theme->url("jquery/jquery.ui.accordion.js") ?>" type="text/javascript"></script--> - <script src="<?= $theme->url("jquery/jquery.dimensions.min.js") ?>" type="text/javascript"></script> - <script src="<?= $theme->url("jquery/jquery.ui.init.js") ?>" type="text/javascript"></script> <?= $theme->head() ?> + <script src="<?= $theme->url("jquery/ui.core.js") ?>" type="text/javascript"></script> + <script src="<?= $theme->url("jquery/ui.tabs.min.js") ?>" type="text/javascript"></script> + <script src="<?= $theme->url("jquery/ui.draggable.min.js") ?>" type="text/javascript"></script> + <script src="<?= $theme->url("jquery/ui.resizable.min.js") ?>" type="text/javascript"></script> + <script src="<?= $theme->url("jquery/ui.dialog.min.js") ?>" type="text/javascript"></script> + <script src="<?= $theme->url("jquery/jquery.dimensions.min.js") ?>" type="text/javascript"></script> + <script src="<?= $theme->url("js/ui.init.js") ?>" type="text/javascript"></script> </head> <body> |
