Oskar Wróbel hace 8 años
padre
commit
e5bb35f419
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/ckeditor5-link/src/link.js

+ 1 - 1
packages/ckeditor5-link/src/link.js

@@ -92,7 +92,7 @@ export default class Link extends Plugin {
 
 		formView.urlInputView.bind( 'value' ).to( linkCommand, 'value' );
 
-		// Switch form to the read-only mode when commands are disabled.
+		// Form elements should be read-only when corresponding commands are disabled.
 		formView.urlInputView.inputView.bind( 'isReadOnly' ).to( linkCommand, 'isEnabled', value => !value );
 		formView.saveButtonView.bind( 'isEnabled' ).to( linkCommand );
 		formView.unlinkButtonView.bind( 'isEnabled' ).to( unlinkCommand );