(selection)
| 54 | |
| 55 | |
| 56 | function commit(selection) { |
| 57 | _selection = selection; |
| 58 | |
| 59 | // Initialize changeset if one does not exist yet. |
| 60 | if (!uploader.changeset) initChangeset(); |
| 61 | |
| 62 | updateSessionChangesetTags(); |
| 63 | selection.call(render); |
| 64 | } |
| 65 | |
| 66 | |
| 67 | // |
nothing calls this directly
no test coverage detected