Make label reflect functionality

This commit is contained in:
Jordan Bates 2013-04-25 08:10:59 -07:00
parent 95369adff3
commit ee5e5cdf31
5 changed files with 12 additions and 16 deletions

View File

@ -229,7 +229,7 @@
'Header auto-hide': false, 'Header auto-hide': false,
'Bottom Header': false, 'Bottom Header': false,
'Header catalog links': false, 'Header catalog links': false,
'Bottom Board List': false, 'Bottom Board List': true,
'Custom Board Navigation': true 'Custom Board Navigation': true
}, },
boardnav: '[ toggle-all ] [current-title]', boardnav: '[ toggle-all ] [current-title]',
@ -4901,7 +4901,7 @@
innerHTML: '<input type=checkbox name="Custom Board Navigation"> Custom board navigation' innerHTML: '<input type=checkbox name="Custom Board Navigation"> Custom board navigation'
}); });
footerToggler = $.el('label', { footerToggler = $.el('label', {
innerHTML: "<input type=checkbox " + (!Conf['Bottom Board List'] ? 'checked' : '') + "> Bottom original board list" innerHTML: "<input type=checkbox " + (!Conf['Bottom Board List'] ? 'checked' : '') + "> Hide bottom board list"
}); });
editCustomNav = $.el('a', { editCustomNav = $.el('a', {
textContent: 'Edit custom board navigation', textContent: 'Edit custom board navigation',
@ -4974,8 +4974,7 @@
if (g.VIEW === 'catalog') { if (g.VIEW === 'catalog') {
_this.addShortcut(cs); _this.addShortcut(cs);
} }
Header.setFooterVisibility(Conf['Footer auto-hide']); Header.setFooterVisibility(Conf['Bottom Board List']);
$.sync('Footer auto-hide', Header.setFooterVisibility);
return $.sync('Bottom Board List', Header.setFooterVisibility); return $.sync('Bottom Board List', Header.setFooterVisibility);
}); });
}, },

View File

@ -230,7 +230,7 @@
'Header auto-hide': false, 'Header auto-hide': false,
'Bottom Header': false, 'Bottom Header': false,
'Header catalog links': false, 'Header catalog links': false,
'Bottom Board List': false, 'Bottom Board List': true,
'Custom Board Navigation': true 'Custom Board Navigation': true
}, },
boardnav: '[ toggle-all ] [current-title]', boardnav: '[ toggle-all ] [current-title]',
@ -4897,7 +4897,7 @@
innerHTML: '<input type=checkbox name="Custom Board Navigation"> Custom board navigation' innerHTML: '<input type=checkbox name="Custom Board Navigation"> Custom board navigation'
}); });
footerToggler = $.el('label', { footerToggler = $.el('label', {
innerHTML: "<input type=checkbox " + (!Conf['Bottom Board List'] ? 'checked' : '') + "> Bottom original board list" innerHTML: "<input type=checkbox " + (!Conf['Bottom Board List'] ? 'checked' : '') + "> Hide bottom board list"
}); });
editCustomNav = $.el('a', { editCustomNav = $.el('a', {
textContent: 'Edit custom board navigation', textContent: 'Edit custom board navigation',
@ -4970,8 +4970,7 @@
if (g.VIEW === 'catalog') { if (g.VIEW === 'catalog') {
_this.addShortcut(cs); _this.addShortcut(cs);
} }
Header.setFooterVisibility(Conf['Footer auto-hide']); Header.setFooterVisibility(Conf['Bottom Board List']);
$.sync('Footer auto-hide', Header.setFooterVisibility);
return $.sync('Bottom Board List', Header.setFooterVisibility); return $.sync('Bottom Board List', Header.setFooterVisibility);
}); });
}, },

View File

@ -127,7 +127,7 @@
'Header auto-hide': false, 'Header auto-hide': false,
'Bottom Header': false, 'Bottom Header': false,
'Header catalog links': false, 'Header catalog links': false,
'Bottom Board List': false, 'Bottom Board List': true,
'Custom Board Navigation': true 'Custom Board Navigation': true
}, },
boardnav: '[ toggle-all ] [current-title]', boardnav: '[ toggle-all ] [current-title]',
@ -4761,7 +4761,7 @@
innerHTML: '<input type=checkbox name="Custom Board Navigation"> Custom board navigation' innerHTML: '<input type=checkbox name="Custom Board Navigation"> Custom board navigation'
}); });
footerToggler = $.el('label', { footerToggler = $.el('label', {
innerHTML: "<input type=checkbox " + (!Conf['Bottom Board List'] ? 'checked' : '') + "> Bottom original board list" innerHTML: "<input type=checkbox " + (!Conf['Bottom Board List'] ? 'checked' : '') + "> Hide bottom board list"
}); });
editCustomNav = $.el('a', { editCustomNav = $.el('a', {
textContent: 'Edit custom board navigation', textContent: 'Edit custom board navigation',
@ -4834,8 +4834,7 @@
if (g.VIEW === 'catalog') { if (g.VIEW === 'catalog') {
_this.addShortcut(cs); _this.addShortcut(cs);
} }
Header.setFooterVisibility(Conf['Footer auto-hide']); Header.setFooterVisibility(Conf['Bottom Board List']);
$.sync('Footer auto-hide', Header.setFooterVisibility);
return $.sync('Bottom Board List', Header.setFooterVisibility); return $.sync('Bottom Board List', Header.setFooterVisibility);
}); });
}, },

View File

@ -412,7 +412,7 @@ http://iqdb.org/?url=%TURL
'Header auto-hide': false 'Header auto-hide': false
'Bottom Header': false 'Bottom Header': false
'Header catalog links': false 'Header catalog links': false
'Bottom Board List': false 'Bottom Board List': true
'Custom Board Navigation': true 'Custom Board Navigation': true
boardnav: '[ toggle-all ] [current-title]' boardnav: '[ toggle-all ] [current-title]'

View File

@ -14,7 +14,7 @@ Header =
customNavToggler = $.el 'label', customNavToggler = $.el 'label',
innerHTML: '<input type=checkbox name="Custom Board Navigation"> Custom board navigation' innerHTML: '<input type=checkbox name="Custom Board Navigation"> Custom board navigation'
footerToggler = $.el 'label', footerToggler = $.el 'label',
innerHTML: "<input type=checkbox #{unless Conf['Bottom Board List'] then 'checked' else ''}> Bottom original board list" innerHTML: "<input type=checkbox #{unless Conf['Bottom Board List'] then 'checked' else ''}> Hide bottom board list"
editCustomNav = $.el 'a', editCustomNav = $.el 'a',
textContent: 'Edit custom board navigation' textContent: 'Edit custom board navigation'
href: 'javascript:;' href: 'javascript:;'
@ -77,8 +77,7 @@ Header =
cs.textContent = 'Catalog Settings' cs.textContent = 'Catalog Settings'
@addShortcut cs if g.VIEW is 'catalog' @addShortcut cs if g.VIEW is 'catalog'
Header.setFooterVisibility Conf['Footer auto-hide'] Header.setFooterVisibility Conf['Bottom Board List']
$.sync 'Footer auto-hide', Header.setFooterVisibility
$.sync 'Bottom Board List', Header.setFooterVisibility $.sync 'Bottom Board List', Header.setFooterVisibility
bar: $.el 'div', bar: $.el 'div',