We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
define(function (require, exports, module) { 'use strict'; // Brackets modules var DocumentManager = brackets.getModule("document/DocumentManager"); var $item = $("<li></li>"); $("<a href='#' id='hello-world'>Hello World</a>") .click(function() { alert("Hello Document: " + DocumentManager.getCurrentDocument().file.fullPath); }) .appendTo($item); $("#menu-experimental-usetab").parent().after($item); });
There was an error while loading. Please reload this page.