1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
Index: page.tpl.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/lumen/page.tpl.php,v
retrieving revision 1.6
diff -u -p -r1.6 page.tpl.php
@@ -12,10 +12,10 @@
//<![CDATA[
if (Drupal.jsEnabled) {
$(function(){
- $('#mid-region div.block-content > ul').column_view();
- $('#main div.node-content > p').leader();
+ $('#block-user-1.block-site-header > ul').column_view();
+ $('#main div.node div.container > p').leader();
// Filter host since Drupal inconsistently creates absolute links with hrefs for internal links.
- $('#page-bounds a[@href^=http://]:not([@href^=http://<?php print $host ?>])').mark({classes: 'external', symbol: '⎋'});
+ $('#page-bounds a[@href^=http://]:not([@href^=http://<?php print $host ?>])').mark({classes: 'external', symbol: '⌃'});
$('#search-theme-form, #search-block-form, #search-form').alter_search(<?php print "$minimum_word_size, '$r_server_name'" ?>, 23);
//$.fix_ie(); // not working yet.
});
@@ -91,7 +91,7 @@
</div>
<?php } ?>
- <?php print $content ?>
+ <?php print $content // Main content ?>
</div>
<hr class="hide" />
|