'Put on the shelf' usability improvement.
[wolnelektury.git] / wolnelektury / static / js / catalogue.js
index c038e24..3aad7b4 100644 (file)
@@ -107,6 +107,7 @@ function serverTime() {
 
 (function($) {
     $(function() {
+       
         $('form input').labelify({labelledClass: 'blur'});
         
         target = $('#login-register-window div.target');
@@ -316,12 +317,10 @@ function serverTime() {
             function() { $(this).css({background: '#EEE'}); }
         ).click(function() {
             if ($('#description').hasClass('hidden')) {
-                $('#description').slideDown('fast').removeClass('hidden');
-                $.cookie('description-state', 'opened', {path: '/', expires: 30});
+                $('#description').animate({"height": $('#description').attr("box_h")+'px'}, {duration: "fast" }).removeClass('hidden');
                 $('p', this).html(LOCALE_TEXTS[LANGUAGE_CODE]['HIDE_DESCRIPTION'] + ' ▲');
             } else {
-                $('#description').slideUp('fast').addClass('hidden');
-                $.cookie('description-state', 'closed', {path: '/', expires: 30});
+                $('#description').animate({"height": '4em'}, {duration: "fast" }).addClass('hidden');
                 $('p', this).html(LOCALE_TEXTS[LANGUAGE_CODE]['EXPAND_DESCRIPTION'] + ' ▼');
             }
         });
@@ -349,9 +348,18 @@ function serverTime() {
                 target.html('<p><img src="/static/img/indicator.gif" />'+LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF']+'</p>');
                 hash.w.css({position: 'absolute', left: offset.left, top: offset.top}).show() },
             onLoad: function(hash) { 
+               try {
+                       $('#createShelfTrigger').click(function(){
+                               $('#createNewShelf').show();
+                       });
+               } catch (e){}
+
                 $('form', hash.w).ajaxForm({
                     target: target,
-                    success: function() { setTimeout(function() { $('#set-window').jqmHide() }, 1000) }
+                    success: function() { 
+                       setTimeout(function() { 
+                                       $('#set-window').jqmHide();
+                                  }, 1000)}
                 });
             }
         });
@@ -364,10 +372,9 @@ function serverTime() {
             });
         });
         
-        if ($.cookie('description-state') == 'closed') {
-            $('#description').hide().addClass('hidden');
-            $('#toggle-description p').html(LOCALE_TEXTS[LANGUAGE_CODE]['EXPAND_DESCRIPTION']+' ▼');
-        }
+        $('#description').attr("box_h", $('#description').height());
+        $('#description').css("height", '4em').addClass('hidden');
+        $('#toggle-description p').html(LOCALE_TEXTS[LANGUAGE_CODE]['EXPAND_DESCRIPTION']+' ▼');
                
         $('#share-shelf').hide().addClass('hidden');
                $('#share-shelf input').focus(function(){this.select();});