blob: 70f2017b73dbeea6f5e4d39a845939bb5f74d00c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Directory page initializer.
// Keeps templates mostly data-only.
(function() {
if (typeof jQuery !== 'function') { return; }
jQuery(function() {
if (typeof initDirectory === 'function') { initDirectory(); }
});
})();
|