doc: Separate pages into sub directories.

This commit is contained in:
Cheng Zhao 2013-09-09 15:49:13 +08:00
parent 6b81070f67
commit 92241b91ce
21 changed files with 20 additions and 20 deletions

View file

@ -7,33 +7,33 @@
## Development ## Development
* [Coding style](coding-style.md) * [Coding style](development/coding-style.md)
* [Source code directory structure](source-code-directory-structure.md) * [Source code directory structure](development/source-code-directory-structure.md)
* [Build instructions (Mac)](build-instructions-mac.md) * [Build instructions (Mac)](development/build-instructions-mac.md)
* [Build instructions (Windows)](build-instructions-windows.md) * [Build instructions (Windows)](development/build-instructions-windows.md)
## API References ## API References
Renderer side modules: Renderer side modules:
* [ipc (renderer)](ipc-renderer.md) * [ipc (renderer)](api/renderer/ipc-renderer.md)
* [remote](remote.md) * [remote](api/renderer/remote.md)
Browser side modules: Browser side modules:
* [app](app.md) * [app](api/browser/app.md)
* [atom-delegate](atom-delegate.md) * [atom-delegate](api/browser/atom-delegate.md)
* [auto-updater](auto-updater.md) * [auto-updater](api/browser/auto-updater.md)
* [browser-window](browser-window.md) * [browser-window](api/browser/browser-window.md)
* [crash-reporter](crash-reporter.md) * [crash-reporter](api/browser/crash-reporter.md)
* [dialog](dialog.md) * [dialog](api/browser/dialog.md)
* [ipc (browser)](ipc-browser.md) * [ipc (browser)](api/browser/ipc-browser.md)
* [menu](menu.md) * [menu](api/browser/menu.md)
* [menu-item](menu-item.md) * [menu-item](api/browser/menu-item.md)
* [power-monitor](power-monitor.md) * [power-monitor](api/browser/power-monitor.md)
* [protocol](protocol.md) * [protocol](api/browser/protocol.md)
Common modules: Common modules:
* [clipboard](clipboard.md) * [clipboard](api/common/clipboard.md)
* [shell](shell.md) * [shell](api/common/shell.md)

View file

@ -5,7 +5,7 @@ A frameless window is a window that has no chrome.
## Create a frameless window ## Create a frameless window
To create a frameless window, you only need to specify `frame` to `false` in To create a frameless window, you only need to specify `frame` to `false` in
[BrowserWindow](browser-window.md)'s `options`: [BrowserWindow](api/browser/browser-window.md)'s `options`:
```javascript ```javascript