Remove window.pasteboard shim

This commit is contained in:
Kevin Sawicki
2013-11-19 14:03:44 -08:00
parent f4de124aa6
commit 83f14c137c
3 changed files with 4 additions and 5 deletions

View File

@@ -1721,7 +1721,7 @@ class Editor extends View
# Copies the current file path to the native clipboard.
copyPathToPasteboard: ->
path = @getPath()
pasteboard.write(path) if path?
atom.pasteboard.write(path) if path?
### Internal ###

View File

@@ -25,7 +25,6 @@ window.setUpEnvironment = (windowMode) ->
#TODO remove once all packages use the atom global
window.config = atom.config
window.syntax = atom.syntax
window.pasteboard = atom.pasteboard
window.keymap = atom.keymap
window.site = atom.site