Drop www in atom.io links

This commit is contained in:
Kevin Sawicki
2014-02-24 17:38:19 -08:00
parent 4eabb5bec6
commit de695e31d2
4 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
![Atom](http://i.imgur.com/OrTvUAD.png)
Check out our [guides and API documentation](https://www.atom.io/docs/latest/).
Check out our [guides and API documentation](https://atom.io/docs/latest).
## Installing

View File

@@ -8,7 +8,7 @@ request = require 'request'
module.exports = (grunt) ->
{spawn} = require('./task-helpers')(grunt)
baseUrl = "https://www.atom.io/api/packages"
baseUrl = "https://atom.io/api/packages"
packageExists = (packageName, token, callback) ->
requestSettings =

View File

@@ -54,5 +54,5 @@ Atom ships with node 0.11.10 and the comprehensive node API docs are available
[SelectListView]: ../classes/SelectListView.html
[View]: ../classes/View.html
[WorkspaceView]: ../classes/WorkspaceView.html
[creating-a-package]: https://www.atom.io/docs/latest/creating-a-package
[creating-a-package]: https://atom.io/docs/latest/creating-a-package
[node-docs]: http://nodejs.org/docs/v0.11.10/api

View File

@@ -194,7 +194,7 @@ class AtomApplication
@on 'application:zoom', -> Menu.sendActionToFirstResponder('zoom:')
@on 'application:bring-all-windows-to-front', -> Menu.sendActionToFirstResponder('arrangeInFront:')
@on 'application:inspect', ({x,y}) -> @focusedWindow().browserWindow.inspectElement(x, y)
@on 'application:open-documentation', -> shell.openExternal('https://www.atom.io/docs/latest/?app')
@on 'application:open-documentation', -> shell.openExternal('https://atom.io/docs/latest/?app')
@on 'application:install-update', -> autoUpdater.quitAndInstall()
@on 'application:check-for-update', => @checkForUpdate()