Bläddra i källkod

Update packages/ckeditor5-widget/src/widgettypearound/widgettypearound.js

Co-authored-by: Kuba Niegowski <1232187+niegowski@users.noreply.github.com>
Aleksander Nowodzinski 5 år sedan
förälder
incheckning
1936a53ed8
1 ändrade filer med 1 tillägg och 5 borttagningar
  1. 1 5
      packages/ckeditor5-widget/src/widgettypearound/widgettypearound.js

+ 1 - 5
packages/ckeditor5-widget/src/widgettypearound/widgettypearound.js

@@ -361,11 +361,7 @@ export default class WidgetTypeAround extends Plugin {
 				// If the selection didn't have the attribute, let's set it now according to the direction of the arrow
 				// key press. This also means we cannot let the Widget plugin listener move the selection.
 				else {
-					if ( isForward ) {
-						writer.setSelectionAttribute( TYPE_AROUND_SELECTION_ATTRIBUTE, 'after' );
-					} else {
-						writer.setSelectionAttribute( TYPE_AROUND_SELECTION_ATTRIBUTE, 'before' );
-					}
+					writer.setSelectionAttribute( TYPE_AROUND_SELECTION_ATTRIBUTE, isForward ? 'after' : 'before' );
 
 					shouldStopAndPreventDefault = true;
 				}