updated for brackets sprint10

This commit is contained in:
dderaedt 2012-06-22 12:06:39 +02:00
parent ae10bdcb0f
commit 6ed990c451
2 changed files with 3 additions and 1 deletions

View file

@ -5,6 +5,8 @@ A brackets extension to generate JSDoc annotations for your functions.
To install, place the ```annotate``` folder inside the ```brackets/src/extensions/user``` folder.
**Compatible with Brackets Sprint10**
Usage
=====
Open a project in Brackets, place your cursor before a function definition, and select ```Annotate``` form the ```Edit``` menu.

View file

@ -128,6 +128,6 @@ define(function (require, exports, module) {
var menu = Menus.getMenu(Menus.AppMenuBar.EDIT_MENU);
menu.addMenuDivider();
menu.addMenuItem("menu-edit-annotate", COMMAND_ID);
menu.addMenuItem(COMMAND_ID);//"menu-edit-annotate",
});