diff options
author | Kris Maglione <maglione.k@gmail.com> | 2008-12-19 13:27:01 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2008-12-19 13:27:01 -0500 |
commit | 74700d3afff32c4ee2ae0ee0d059a7aec4a3427e (patch) | |
tree | 77a0a10661c07bf5b916567454df75648072c3f4 /common/content/commands.js | |
parent | f95dfac83fe61f42e5e1c03f299d8b89d66b9fdf (diff) | |
download | pentadactyl-74700d3afff32c4ee2ae0ee0d059a7aec4a3427e.tar.gz |
Document some more crap.
Diffstat (limited to 'common/content/commands.js')
-rw-r--r-- | common/content/commands.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/content/commands.js b/common/content/commands.js index 7486d344..d357918d 100644 --- a/common/content/commands.js +++ b/common/content/commands.js @@ -26,6 +26,8 @@ the provisions above, a recipient may use your version of this file under the terms of any one of the MPL, the GPL or the LGPL. }}} ***** END LICENSE BLOCK *****/ +/** @scope modules */ + // Do NOT create instances of this class yourself, use the helper method // commands.add() instead function Command(specs, description, action, extraInfo) //{{{ @@ -147,6 +149,9 @@ Command.prototype = { }; //}}} +/** + * @instance commands + */ function Commands() //{{{ { //////////////////////////////////////////////////////////////////////////////// |