prettier player window,
[wolnelektury.git] / wolnelektury / static / js / book.js
index b9ab6b1..335fe39 100644 (file)
@@ -32,7 +32,7 @@ $(function() {
         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');
@@ -40,4 +40,22 @@ $(function() {
         $(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);
+            }
+        });
+    }
+
 });