* Append operation that takes a callback. * * @param {Node} el * @param {Node} target * @param {Vue} vm - unused * @param {Function} [cb]
(el, target, vm, cb)
| 9197 | */ |
| 9198 | |
| 9199 | function append(el, target, vm, cb) { |
| 9200 | target.appendChild(el); |
| 9201 | if (cb) cb(); |
| 9202 | } |
| 9203 | |
| 9204 | /** |
| 9205 | * InsertBefore operation that takes a callback. |