Keep updating Internal hiding

This commit is contained in:
Garen Torikian
2013-04-18 14:58:19 -07:00
parent e478d9b7a0
commit 14a0010517
3 changed files with 5 additions and 2 deletions

View File

@@ -1,8 +1,10 @@
Task = require 'task'
_ = require 'underscore'
# Internal:
module.exports =
class RepositoryStatusTask extends Task
constructor: (@repo) ->
super('repository-status-handler')

View File

@@ -1,8 +1,8 @@
_ = require 'underscore'
# Internal: The object in charge of managing redo and undo operations.
module.exports =
# Internal: The object in charge of managing redo and undo operations.
class UndoManager
undoHistory: null
redoHistory: null
@@ -80,4 +80,4 @@ class UndoManager
batch.newSelectionRanges
catch e
@clear()
throw e
throw e

View File

@@ -9,6 +9,7 @@ require 'space-pen-extensions'
deserializers = {}
deferredDeserializers = {}
###
# Internal #
###