summaryrefslogtreecommitdiff
path: root/themes/default/views
diff options
context:
space:
mode:
authorChad Kieffer <chad@2tbsp.com>2008-11-21 01:56:33 +0000
committerChad Kieffer <chad@2tbsp.com>2008-11-21 01:56:33 +0000
commite60ddd0bd8e3337cf569eb66d36f2bd1021e948e (patch)
tree1ec7204185b373e2595d50c28ae909a82f626114 /themes/default/views
parent8c06908f7f4e0bf6d55d4f6e2ee2c062b2f8190e (diff)
Add jQuery UI, tabs, and accordion JS and CSS to build Adam Torres' hi-fi prototype. Dropped YUI Base CSS in favor of defining our own base styles in screen.css, headings will and other items may not look right until I do. Need to figure out how jQuery ThemeRoller CSS should be integrated, if at all.
Diffstat (limited to 'themes/default/views')
-rw-r--r--themes/default/views/page.html.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php
index 345e78e8..e64df820 100644
--- a/themes/default/views/page.html.php
+++ b/themes/default/views/page.html.php
@@ -7,8 +7,6 @@
<title><?= _("Browse Photos") ?> :: <?= $item->title ?></title>
<link rel="stylesheet" type="text/css" href="<?= url::file("lib/yui/reset-fonts-grids.css") ?>"
media="screen,print,projection" />
- <link rel="stylesheet" type="text/css" href="<?= url::file("lib/yui/base-min.css") ?>"
- media="screen,print,projection" />
<link rel="stylesheet" type="text/css" href="<?= $theme->url("css/screen.css") ?>"
media="screen,print,projection" />
<?= $theme->block(dynamic_block::HEAD_LINK) ?>
@@ -21,6 +19,14 @@
<? if ($user): ?>
<script src="<?= url::file("lib/jquery.jeditable.js") ?>" type="text/javascript"></script>
<? endif; ?>
+ <!-- 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.tabs.js") ?>" type="text/javascript"></script>
+ <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.ui.init.js") ?>" type="text/javascript"></script>
</head>
<body>