1
+ − 1
// Page toolbar - selecting buttons
+ − 2
+ − 3
function unselectAllButtonsMajor()
+ − 4
{
+ − 5
if ( !document.getElementById('pagebar_main') )
+ − 6
return false;
+ − 7
obj = document.getElementById('pagebar_main').firstChild;
+ − 8
while(obj)
+ − 9
{
+ − 10
if(obj.id == 'mdgToolbar_article' || obj.id == 'mdgToolbar_discussion')
+ − 11
{
420
+ − 12
$dynano(obj).rmClass('selected');
1
+ − 13
}
+ − 14
obj = obj.nextSibling;
+ − 15
}
+ − 16
}
+ − 17
+ − 18
function unselectAllButtonsMinor()
+ − 19
{
+ − 20
if ( !document.getElementById('pagebar_main') )
+ − 21
return false;
+ − 22
obj = document.getElementById('pagebar_main').firstChild.nextSibling;
+ − 23
while(obj)
+ − 24
{
420
+ − 25
if ( !$dynano(obj).hasClass('selected') )
1
+ − 26
{
+ − 27
obj = obj.nextSibling;
+ − 28
continue;
+ − 29
}
+ − 30
if(obj.id != 'mdgToolbar_article' && obj.id != 'mdgToolbar_discussion')
+ − 31
{
+ − 32
if ( obj.className )
420
+ − 33
$dynano(obj).rmClass('selected');
1
+ − 34
}
+ − 35
obj = obj.nextSibling;
+ − 36
}
+ − 37
}
+ − 38
+ − 39
function selectButtonMajor(which)
+ − 40
{
+ − 41
if ( !document.getElementById('pagebar_main') )
+ − 42
return false;
86
c162ca39db8f
Finished pagination code (was incomplete in previous revision) and added a few hacks for an upcoming theme
Dan
diff
changeset
+ − 43
var dom = document.getElementById('mdgToolbar_'+which);
c162ca39db8f
Finished pagination code (was incomplete in previous revision) and added a few hacks for an upcoming theme
Dan
diff
changeset
+ − 44
if ( !dom )
c162ca39db8f
Finished pagination code (was incomplete in previous revision) and added a few hacks for an upcoming theme
Dan
diff
changeset
+ − 45
return false;
c162ca39db8f
Finished pagination code (was incomplete in previous revision) and added a few hacks for an upcoming theme
Dan
diff
changeset
+ − 46
if(typeof(dom) == 'object')
1
+ − 47
{
+ − 48
unselectAllButtonsMajor();
420
+ − 49
$dynano('mdgToolbar_'+which).addClass('selected');
1
+ − 50
}
+ − 51
}
+ − 52
+ − 53
function selectButtonMinor(which)
+ − 54
{
+ − 55
if ( !document.getElementById('pagebar_main') )
+ − 56
return false;
+ − 57
if(typeof(document.getElementById('mdgToolbar_'+which)) == 'object')
+ − 58
{
+ − 59
unselectAllButtonsMinor();
420
+ − 60
$dynano('mdgToolbar_'+which).addClass('selected');
1
+ − 61
}
+ − 62
}
+ − 63