FIX: Timeline was wrong sometimes on iPad

This commit is contained in:
Robin Ward 2017-06-05 15:23:37 -04:00
parent 4b82d4fb15
commit 02ab2706df
1 changed files with 5 additions and 2 deletions

View File

@ -14,12 +14,15 @@ let _dirty = {};
export function keyDirty(key, options) {
options = options || {};
options.dirty = true;
_dirty[key] = options;
}
export function renderedKey(key) {
delete _dirty[key];
if (key === '*') {
_dirty = {};
} else {
delete _dirty[key];
}
}
export function queryRegistry(name) {