Created
June 2, 2009 21:14
-
-
Save zaach/122600 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
content narwhal-xpc content/ | |
resource narwhal-xpc resources/ | |
content narwhal narwhal/ | |
skin narwhal-xpc classic/1.0 skin/classic/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ find . | |
. | |
./extensions | |
./defaults | |
./defaults/preferences | |
./defaults/preferences/debug.js | |
./defaults/preferences/prefs.js | |
./chrome | |
./chrome/chrome.manifest | |
./chrome/skin | |
./chrome/skin/classic | |
./chrome/skin/classic/main.css | |
./chrome/content | |
./chrome/content/main.js | |
./chrome/content/main.xul | |
./chrome/narwhal | |
./chrome/resources | |
./application.ini | |
./updates | |
./updates/0 | |
./.xuldev | |
./components |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<?xml-stylesheet href="chrome://narwhal-xpc/skin/main.css" type="text/css"?> | |
<window id="main" title="Narwhal on XUL" width="300" height="300" | |
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> | |
<script type="application/javascript" src="chrome://narwhal/content/platforms/xpc/bootstrap.js" /> | |
<vbox flex='1'> | |
<button label="Hello World" oncommand="alert(42);"/> | |
</vbox> | |
</window> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment