From 86e12cac616e1e4e812baa687b1018587be0023a Mon Sep 17 00:00:00 2001 From: Christian Williams Date: Mon, 16 Sep 2013 13:02:37 -0700 Subject: [PATCH] Revert drag marker GIF to previous version When we switched all base 64 encoded blank GIFs to the "stable" version, we created a regression that prevented proper styling of the drag marker. This restores the correct drag-drop experience. Change-Id: I9c2a195fd866a5919245667a436106772debcffd --- modules/ve/ce/ve.ce.RelocatableNode.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ve/ce/ve.ce.RelocatableNode.js b/modules/ve/ce/ve.ce.RelocatableNode.js index ea68aae588..f91e66312d 100644 --- a/modules/ve/ce/ve.ce.RelocatableNode.js +++ b/modules/ve/ce/ve.ce.RelocatableNode.js @@ -33,7 +33,8 @@ ve.ce.RelocatableNode = function VeCeRelocatableNode( $relocatable ) { // Initialization this.$relocatableMarker .addClass( 've-ce-relocatableNode-marker' ) - .attr( 'src', 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7' ) + // Do not change this src encoding. This encoding is required for the desired UI effect. + .attr( 'src', 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==' ) .on( { 'dragstart': ve.bind( this.onRelocatableDragStart, this ), 'dragend': ve.bind( this.onRelocatableDragEnd, this )