add global option for tree view
This commit is contained in:
parent
960053af75
commit
2256604dad
@ -11,35 +11,54 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
if (active_page == 'thread' || active_page == 'ukko' || active_page == 'index')
|
||||||
|
$(function() {
|
||||||
|
if (window.Options && Options.get_tab('general')) {
|
||||||
|
var selector = '#treeview-global>input';
|
||||||
|
Options.extend_tab("general", "<label id='treeview-global'><input type='checkbox' /> "+_('Use tree view by default')+"</label>");
|
||||||
|
}
|
||||||
|
$(selector).on('change', function () {
|
||||||
|
if (localStorage.treeview === 'true') {
|
||||||
|
localStorage.treeview = 'false';
|
||||||
|
} else {
|
||||||
|
localStorage.treeview = 'true';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (localStorage.treeview === 'true') {
|
||||||
|
$(selector).attr('checked', 'checked');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
if (active_page == 'thread')
|
if (active_page == 'thread')
|
||||||
$(function() {
|
$(function() {
|
||||||
|
var treeview = function() {
|
||||||
|
$('.post.reply').each(function(){
|
||||||
|
var references = [];
|
||||||
|
$(this).find('.body a').each(function(){
|
||||||
|
if ($(this).html().match('^>>[0-9]+$')) {
|
||||||
|
references.push(parseInt($(this).html().replace('>>', '')));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
var maxref = references.reduce(function(a,b) { return a > b ? a : b; }, 0);
|
||||||
|
|
||||||
|
var parent_post = $("#reply_"+maxref);
|
||||||
|
if (parent_post.length == 0) return;
|
||||||
|
|
||||||
|
var margin = parseInt(parent_post.css("margin-left"))+32;
|
||||||
|
|
||||||
|
var post = $(this);
|
||||||
|
var br = post.next();
|
||||||
|
|
||||||
|
post.detach().css("margin-left", margin).insertAfter(parent_post.next());
|
||||||
|
br.detach().insertAfter(post);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (localStorage.treeview === 'true') {
|
||||||
|
treeview();
|
||||||
|
}
|
||||||
|
|
||||||
$('hr:first').before('<div id="treeview" style="text-align:right"><a class="unimportant" href="javascript:void(0)"></a></div>');
|
$('hr:first').before('<div id="treeview" style="text-align:right"><a class="unimportant" href="javascript:void(0)"></a></div>');
|
||||||
$('div#treeview a')
|
$('div#treeview a')
|
||||||
.text(_('Tree view'))
|
.text(_('Tree view'))
|
||||||
.click(function(e) {
|
.click(function(e) { treeview(); e.preventDefault(); });
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
$('.post.reply').each(function(){
|
|
||||||
var references = [];
|
|
||||||
$(this).find('.body a').each(function(){
|
|
||||||
if ($(this).html().match('^>>[0-9]+$')) {
|
|
||||||
references.push(parseInt($(this).html().replace('>>', '')));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
var maxref = references.reduce(function(a,b) { return a > b ? a : b; }, 0);
|
|
||||||
|
|
||||||
var parent_post = $("#reply_"+maxref);
|
|
||||||
if (parent_post.length == 0) return;
|
|
||||||
|
|
||||||
var margin = parseInt(parent_post.css("margin-left"))+32;
|
|
||||||
|
|
||||||
var post = $(this);
|
|
||||||
var br = post.next();
|
|
||||||
|
|
||||||
post.detach().css("margin-left", margin).insertAfter(parent_post.next());
|
|
||||||
br.detach().insertAfter(post);
|
|
||||||
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
@ -825,7 +825,7 @@ div.thread:hover {
|
|||||||
|
|
||||||
#options_div {
|
#options_div {
|
||||||
width: 600px;
|
width: 600px;
|
||||||
height: 300px;
|
height: 320px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#alert_div {
|
#alert_div {
|
||||||
@ -892,6 +892,7 @@ div.thread:hover {
|
|||||||
right: 0px;
|
right: 0px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.options_tab h2 {
|
.options_tab h2 {
|
||||||
|
Loading…
Reference in New Issue
Block a user