indentation fixed

This commit is contained in:
Joonsoo Jeon 2013-05-06 10:25:12 +09:00
commit 2baffd3256

View file

@ -67,9 +67,9 @@ var UndoManager = function() {
this.$redoStack = [];
if (this.dirtyCounter < 0) {
// The user has made a change after undoing past the last clean state.
// We can never get back to a clean state now until markClean() is called.
this.dirtyCounter = NaN;
// The user has made a change after undoing past the last clean state.
// We can never get back to a clean state now until markClean() is called.
this.dirtyCounter = NaN;
}
this.dirtyCounter++;
};