From 14a0010517b2cfd4cb32bbddaed744dde6679220 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Thu, 18 Apr 2013 14:58:19 -0700 Subject: [PATCH] Keep updating Internal hiding --- src/app/repository-status-task.coffee | 2 ++ src/app/undo-manager.coffee | 4 ++-- src/app/window.coffee | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/repository-status-task.coffee b/src/app/repository-status-task.coffee index 0e5f746a5..358d9e9fb 100644 --- a/src/app/repository-status-task.coffee +++ b/src/app/repository-status-task.coffee @@ -1,8 +1,10 @@ Task = require 'task' _ = require 'underscore' +# Internal: module.exports = class RepositoryStatusTask extends Task + constructor: (@repo) -> super('repository-status-handler') diff --git a/src/app/undo-manager.coffee b/src/app/undo-manager.coffee index 624567cf5..16ee55aa2 100644 --- a/src/app/undo-manager.coffee +++ b/src/app/undo-manager.coffee @@ -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 \ No newline at end of file diff --git a/src/app/window.coffee b/src/app/window.coffee index 26881b793..508cf0dda 100644 --- a/src/app/window.coffee +++ b/src/app/window.coffee @@ -9,6 +9,7 @@ require 'space-pen-extensions' deserializers = {} deferredDeserializers = {} + ### # Internal # ###