if ($('#toc li').length == 0) {
$('#menu li a[href="#toc"]').remove();
}
+ if ($('#nota_red').length == 0) {
+ $('#menu li a[href="#nota_red"]').remove();
+ }
// On page load, scroll to anchor
scrollToAnchor(window.location.hash)
scrollToAnchor($(this).attr('href'));
});
- $('#menu li a').toggle(function() {
+ $('#menu li a.menu').toggle(function() {
$('#menu li a.selected').click();
$(this).addClass('selected');
$($(this).attr('href')).slideDown('fast');
$(this).removeClass('selected');
$($(this).attr('href')).slideUp('fast');
});
+
+
+ if (window.getSelection) {
+ $('.theme-begin').click(function() {
+ var selection = window.getSelection();
+ selection.removeAllRanges();
+ var range = document.createRange();
+
+ var e = $(".theme-end[fid='" + $(this).attr('fid') + "']")[0];
+
+ if (e) {
+ range.setStartAfter(this);
+ range.setEndBefore(e);
+ selection.addRange(range);
+ }
+ });
+ }
+
});