1
0
Fork 0

DomFieldFactory falls back to element lookups by id

* src/ui/field/DomFieldFactory (create):
Use ElementStyler#getElementByNameLax
master
Mike Gerwitz 2016-04-05 00:05:07 -04:00
parent afa14ccc39
commit d8fc549700
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/**
* Creates DomField
*
* Copyright (C) 2015 LoVullo Associates, Inc.
* Copyright (C) 2015, 2016 LoVullo Associates, Inc.
*
* This file is part of liza.
*
@ -80,7 +80,7 @@ module.exports = Class( 'DomFieldFactory',
function c()
{
callback( _self._elementStyler.getElementByName(
callback( _self._elementStyler.getElementByNameLax(
name, index, null, root
)[0] );
}