* @param {!Node} node * @param {boolean=} opt_lightboxMode * @private
(node, opt_lightboxMode)
| 211 | * @private |
| 212 | */ |
| 213 | scanNode_(node, opt_lightboxMode) { |
| 214 | this.trySetupSelectors_(node, opt_lightboxMode); |
| 215 | |
| 216 | // Sort tracked elements in document order. |
| 217 | this.sortInDomOrder_(); |
| 218 | |
| 219 | this.update(); |
| 220 | } |
| 221 | |
| 222 | /** |
| 223 | * Begin observing changes to the hidden attribute. |
no test coverage detected