Ticket #148: element.patch
| File element.patch, 0.5 kB (added by stever, 3 years ago) |
|---|
-
Web/Javascripts/prado/element.js
19 19 if(!el && !isList) return; 20 20 method = isList ? 'check'+method : el.tagName.toLowerCase()+method; 21 21 var selection = Prado.Element.Selection; 22 if( isFunction(selection[method]))22 if(typeof(selection[method]) == "function") 23 23 selection[method](isList ? element : el,value); 24 24 }, 25 25
