Ticket 867: 'cancel' button in editor.
[redakcja.git] / redakcja / static / js / wiki / loader.js
index e2d4d2b..f051511 100644 (file)
@@ -17,10 +17,6 @@ $(function()
 
     function initialize()
        {
-               gallery = new $.wiki.ScanGalleryPerspective({
-                       doc: CurrentDocument, id: "ScanGalleryPerspective"
-               });
-
                $(document).keydown(function(event) {
                        console.log("Received key:", event);
                });
@@ -36,7 +32,7 @@ $(function()
                /*
                 * TABS
                 */
-        $('#tabs li').live('click', function(event, callback) {
+        $('.tabs li').live('click', function(event, callback) {
                        $.wiki.switchToTab(this);
         });
 
@@ -62,25 +58,34 @@ $(function()
         $('.vsplitbar').toggle(
                        function() {
                                $.wiki.state.perspectives.ScanGalleryPerspective.show = true;
-                               $('#side-gallery').show();
-                               $('.vsplitbar').css('right', 480).addClass('.active');
+                               $('#sidebar').show();
+                               $(".vsplitbar-title").html("↓ GALLERY ↓");
+                               $('.vsplitbar').css('right', 480).addClass('active');
                                $('#editor .editor').css('right', 510);
                                $(window).resize();
-                               gallery.onEnter();
+                               $.wiki.perspectiveForTab('#tabs-right .active').onEnter();
                        },
                        function() {
                                $.wiki.state.perspectives.ScanGalleryPerspective.show = false;
-                               $('#side-gallery').hide();
+                               $('#sidebar').hide();
                                $('.vsplitbar').css('right', 0).removeClass('active');
+                               if($(".vsplitbar-title").html() == "↓ SEARCH AND REPLACE ↓"){
+                                       $(".vsplitbar-title").html("↑ SEARCH AND REPLACE ↑");        
+                               } else {
+                                   $(".vsplitbar-title").html("↑ GALLERY ↑");
+                               }
                                $('#editor .editor').css('right', 30);
                                $(window).resize();
-                               gallery.onExit();
+                               $.wiki.perspectiveForTab('#tabs-right .active').onExit();
                        }
                );
 
-               if($.wiki.state.perspectives.ScanGalleryPerspective.show)
-                       $('.vsplitbar').trigger('click');
-
+               if($.wiki.state.perspectives.ScanGalleryPerspective.show){
+            $('.vsplitbar').trigger('click');
+            $(".vsplitbar-title").html("↓ GALLERY ↓");
+        } else {
+            $(".vsplitbar-title").html("↑ GALLERY ↑");
+        }
         window.onbeforeunload = function(e) {
             if($.wiki.isDirty()) {
                                e.returnValue = "Na stronie mogą być nie zapisane zmiany.";
@@ -137,6 +142,6 @@ $(function()
        /*
         * Initialize all perspectives
         */
-       initAll( $.makeArray($('ol#tabs li')), initialize);
+       initAll( $.makeArray($('.tabs li')), initialize);
        console.log(location.hash);
 });