Make WordPress Core

Changeset 28189 for trunk


Ignore:
Timestamp:
04/23/2014 08:34:43 PM (10 years ago)
Author:
azaozz
Message:

Drag/drop on the editor to upload: don't trigger the uploader when selected test is being dragged from one window to another. See #27880, for trunk.

Location:
trunk/src/wp-includes/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/js/media-views.js

    r28178 r28189  
    32713271        overContainer: false,
    32723272        overDropzone: false,
     3273        draggingFile: null,
    32733274
    32743275        initialize: function() {
     
    33083309            supports = supports && !! ( window.File && window.FileList && window.FileReader );
    33093310            return supports;
     3311        },
     3312
     3313        isDraggingFile: function( event ) {
     3314            if ( this.draggingFile !== null ) {
     3315                return this.draggingFile;
     3316            }
     3317
     3318            if ( _.isUndefined( event.originalEvent ) || _.isUndefined( event.originalEvent.dataTransfer ) ) {
     3319                return false;
     3320            }
     3321
     3322            this.draggingFile = _.indexOf( event.originalEvent.dataTransfer.types, 'Files' ) > -1 &&
     3323                _.indexOf( event.originalEvent.dataTransfer.types, 'text/plain' ) === -1;
     3324
     3325            return this.draggingFile;
    33103326        },
    33113327
     
    33193335            if ( ! _.isUndefined( e ) ) {
    33203336                $( e.target ).closest( '.uploader-editor' ).toggleClass( 'droppable', this.overDropzone );
     3337            }
     3338
     3339            if ( ! this.overContainer && ! this.overDropzone ) {
     3340                this.draggingFile = null;
    33213341            }
    33223342
     
    33843404        },
    33853405
    3386         containerDragover: function() {
    3387             if ( this.localDrag ) {
     3406        containerDragover: function( event ) {
     3407            if ( this.localDrag || ! this.isDraggingFile( event ) ) {
    33883408                return;
    33893409            }
     
    34003420        },
    34013421
    3402         dropzoneDragover: function( e ) {
    3403             if ( this.localDrag ) {
     3422        dropzoneDragover: function( event ) {
     3423            if ( this.localDrag || ! this.isDraggingFile( event ) ) {
    34043424                return;
    34053425            }
    34063426
    34073427            this.overDropzone = true;
    3408             this.refresh( e );
     3428            this.refresh( event );
    34093429            return false;
    34103430        },
  • trunk/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js

    r28181 r28189  
    318318                if ( typeof window.jQuery !== 'undefined' ) {
    319319                    // Trigger the jQuery handlers.
    320                     window.jQuery( document ).triggerHandler( event.type );
     320                    window.jQuery( document ).trigger( new window.jQuery.Event( event ) );
    321321                }
    322322            });
Note: See TracChangeset for help on using the changeset viewer.