]> www.average.org Git - mkgallery.git/blob - include/infopage.js
nitpicks
[mkgallery.git] / include / infopage.js
1 /*
2         This is a part of mkgallery.pl suite
3         http://www.average.org/mkgallery/
4
5         Uses mootools (1.1) http://www.mootools.net/
6 */
7
8 function process_infopage() {
9         parsedurl = parseUrl(document.URL)
10         if (parsedurl['query'] == 'conceal'){
11                 $$('.conceal').each(function(el){
12                         el.setStyle('display', 'none');
13                 })
14         }
15 }
16
17 /* Initialization */
18 window.addEvent('domready',process_infopage);