Categories theme v0.2.1 (Frame removal works correctly.)
This commit is contained in:
parent
c210cdbfea
commit
a59b915b0a
@ -8,7 +8,7 @@
|
||||
'Group-ordered, category-aware modification of the Frameset theme, with removable sidebar frame.
|
||||
|
||||
Requires $config[\'boards\'] and $config[\'categories\'].';
|
||||
$theme['version'] = 'v0.2';
|
||||
$theme['version'] = 'v0.2.1';
|
||||
|
||||
// Theme configuration
|
||||
$theme['config'] = Array();
|
||||
|
@ -39,6 +39,11 @@
|
||||
. 'iframe#main{border-left:1px solid black;left:15%;top:0;width:85%}'
|
||||
. '</style>'
|
||||
. '<title>' . $settings['title'] . '</title>'
|
||||
. '<script type="text/javascript">'
|
||||
. 'function removeFrames() {'
|
||||
. 'window.location = document.getElementById("main").contentWindow.location.href'
|
||||
. '}'
|
||||
. '</script>'
|
||||
. '</head><body>'
|
||||
// Sidebar
|
||||
. '<iframe src="sidebar.html" id="sidebar" name="sidebar"></iframe>'
|
||||
@ -109,16 +114,11 @@
|
||||
. '</style>'
|
||||
. '<base target="main" />'
|
||||
. '<title>' . $settings['title'] . '</title>'
|
||||
. '<script type="text/javascript">'
|
||||
. 'function removeFrames() {'
|
||||
. 'parent.window.location = "' . $config['root'] . 'news.html"'
|
||||
. '}'
|
||||
. '</script>'
|
||||
. '</head><body>';
|
||||
|
||||
$body .= '<fieldset><legend>' . $settings['title'] . '</legend><ul>' .
|
||||
'<li><a class="system" href="news.html">[News]</a></li>' .
|
||||
'<li><a class="system" href="javascript:removeFrames()">[Remove Frames]</a></li>' .
|
||||
'<li><a class="system" href="javascript:parent.removeFrames()">[Remove Frames]</a></li>' .
|
||||
'</ul></fieldset>';
|
||||
|
||||
for($cat = 0; $cat < count($config['categories']); $cat++) {
|
||||
|
Loading…
Reference in New Issue
Block a user