fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
remove bottom border in main menu
[wolnelektury.git]
/
src
/
wolnelektury
/
static
/
js
/
base.js
diff --git
a/src/wolnelektury/static/js/base.js
b/src/wolnelektury/static/js/base.js
index
5283468
..
eee31f9
100644
(file)
--- a/
src/wolnelektury/static/js/base.js
+++ b/
src/wolnelektury/static/js/base.js
@@
-22,9
+22,9
@@
if (button && short_text) button.html(short_text);
}
return false;
if (button && short_text) button.html(short_text);
}
return false;
- }
+ }
;
return toggle;
return toggle;
- }
+ }
;
if (long_el.html().length <= short_el.html().length)
return;
if (long_el.html().length <= short_el.html().length)
return;
@@
-209,15
+209,15
@@
$('#themes-list-toggle').click(function(event) {
onFormat: function (type) {
switch (type) {
case 'block': // n and c
onFormat: function (type) {
switch (type) {
case 'block': // n and c
- return ' <
a href="#"' + (this.value == this.page ? ' class="current"' : '') + '>' + this.value + '</a>
';
+ return ' <
li><a href="#"' + (this.value == this.page ? ' class="current"' : '') + '>' + this.value + '</a></li>
';
case 'next': // >
case 'next': // >
- return '
<a href="#">></a>
';
+ return '
<li><a href="#">›</a></li>
';
case 'prev': // <
case 'prev': // <
- return '
<a href="#"><</a>
';
+ return '
<li><a href="#">‹</a></li>
';
case 'first': // [
case 'first': // [
- return '<
a href="#">«</a>
';
+ return '<
li><a href="#">«</a></li>
';
case 'last': // ]
case 'last': // ]
- return '
<a href="#">»</a
>';
+ return '
<li><a href="#">»</a></li
>';
}
}
});
}
}
});