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/options.js | |
parent | f95dfac83fe61f42e5e1c03f299d8b89d66b9fdf (diff) | |
download | pentadactyl-74700d3afff32c4ee2ae0ee0d059a7aec4a3427e.tar.gz |
Document some more crap.
Diffstat (limited to 'common/content/options.js')
-rw-r--r-- | common/content/options.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/content/options.js b/common/content/options.js index 6373dcb6..a1844a5f 100644 --- a/common/content/options.js +++ b/common/content/options.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 // options.add() instead function Option(names, description, type, defaultValue, extraInfo) //{{{ @@ -293,6 +295,9 @@ Option.validateCompleter = function (values) function (value) res.some(function (item) item[0] == value)); }; //}}} +/** + * @instance options + */ function Options() //{{{ { //////////////////////////////////////////////////////////////////////////////// |