]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fixed bug oc-1659 - history dialogue cannot be closed once opened
authorSam Tuke <samtuke@owncloud.com>
Wed, 12 Sep 2012 13:10:12 +0000 (14:10 +0100)
committerSam Tuke <samtuke@owncloud.com>
Wed, 12 Sep 2012 13:10:12 +0000 (14:10 +0100)
apps/files_versions/js/versions.js

index 1c8d083ea42631fca22f279d83f210ab3b97daaf..495848b8226fdba96482de5a51248fd0c221282c 100644 (file)
@@ -11,24 +11,33 @@ $(document).ready(function() {
 $(document).ready(function(){
        if (typeof FileActions !== 'undefined') {
                // Add history button to files/index.php
-               FileActions.register('file','History', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/history');},function(filename){
-
-                       if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback
-
-                       var file = $('#dir').val()+'/'+filename;
-                       // Check if drop down is already visible for a different file
-                       if (($('#dropdown').length > 0)) {
-                               if (file != $('#dropdown').data('file')) {
-                                       $('#dropdown').hide('blind', function() {
-                                               $('#dropdown').remove();
-                                               $('tr').removeClass('mouseOver');
-                                               createVersionsDropdown(filename, file);
-                                       });
+               FileActions.register(
+                       'file'
+                       ,'History'
+                       , OC.PERMISSION_UPDATE
+                       , function() {
+                               // Specify icon for hitory button
+                               return OC.imagePath('core','actions/history');
+                       }
+                       ,function(filename){
+                               // Action to perform when clicked
+                               if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback
+
+                               var file = $('#dir').val()+'/'+filename;
+                               // Check if drop down is already visible for a different file
+                               if (($('#dropdown').length > 0)) {
+                                       if (file != $('#dropdown').data('file')) {
+                                               $('#dropdown').hide('blind', function() {
+                                                       $('#dropdown').remove();
+                                                       $('tr').removeClass('mouseOver');
+                                                       createVersionsDropdown(filename, file);
+                                               });
+                                       }
+                               } else {
+                                       createVersionsDropdown(filename, file);
                                }
-                       } else {
-                               createVersionsDropdown(filename, file);
                        }
-               });
+               );
        }
 });
 
@@ -42,7 +51,6 @@ function createVersionsDropdown(filename, files) {
        html += '<option value=""></option>';
        html += '</select>';
        html += '</div>';
-       //html += '<input type="button" value="Revert file" onclick="revertFile()" />';
        html += '<input type="button" value="All versions..." onclick="window.location=\''+historyUrl+'\'" name="makelink" id="makelink" />';
        html += '<input id="link" style="display:none; width:90%;" />';
 
@@ -60,9 +68,7 @@ function createVersionsDropdown(filename, files) {
                data: { source: files },
                async: false,
                success: function( versions ) {
-
-                       //alert("helo "+OC.linkTo('files_versions', 'ajax/getVersions.php'));
-
+                       
                        if (versions) {
                                $.each( versions, function(index, row ) {
                                        addVersion( row );
@@ -103,7 +109,7 @@ function createVersionsDropdown(filename, files) {
 
        }
 
-       function addVersion(revision ) {
+       function addVersion( revision ) {
                name=formatDate(revision.version*1000);
                var version=$('<option/>');
                version.attr('value',revision.version);
@@ -122,8 +128,23 @@ function createVersionsDropdown(filename, files) {
 
                version.appendTo('#found_versions');
        }
-
+       
+       $('tr').filterAttr('data-file',filename).addClass('mouseOver');
        $('#dropdown').show('blind');
 
 
 }
+
+$(this).click(
+       function(event) {
+       
+       if ($('#dropdown').has(event.target).length === 0) {
+               $('#dropdown').hide('blind', function() {
+                       $('#dropdown').remove();
+                       $('tr').removeClass('mouseOver');
+               });
+       }
+
+       
+       }
+);
\ No newline at end of file