Explorar el Código

Tests: Improved test coverage in Template class.

Aleksander Nowodziński hace 9 años
padre
commit
c3e02eba19
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/ckeditor5-ui/src/template.js

+ 1 - 1
packages/ckeditor5-ui/src/template.js

@@ -814,7 +814,7 @@ function getTextUpdater( node ) {
 // @param {String} attrName Name of the attribute to be modified.
 // @param {String} [ns=null] Namespace to use.
 // @returns {Object}
-function getAttributeUpdater( el, attrName, ns = null ) {
+function getAttributeUpdater( el, attrName, ns ) {
 	return {
 		set( value ) {
 			el.setAttributeNS( ns, attrName, value );