From e260064df2ca19ac85d6769e50b2e9b3d6b4e6fa Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Tue, 16 Sep 2014 11:52:59 -0700 Subject: [PATCH] Add getLoadSettings to atom metadata section --- src/atom.coffee | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/atom.coffee b/src/atom.coffee index afa78c672..d5cab5dab 100644 --- a/src/atom.coffee +++ b/src/atom.coffee @@ -234,6 +234,12 @@ class Atom extends Model getConfigDirPath: -> @constructor.getConfigDirPath() + # Public: Get the load settings for the current window. + # + # Returns an {Object} containing all the load setting key/value pairs. + getLoadSettings: -> + @constructor.getLoadSettings() + ### Section: Managing The Atom Window ### @@ -401,12 +407,6 @@ class Atom extends Model - # Public: Get the load settings for the current window. - # - # Returns an {Object} containing all the load setting key/value pairs. - getLoadSettings: -> - @constructor.getLoadSettings() - deserializeProject: -> Project = require './project'