|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
580 bytes
|
| Line | |
|---|
| 1 |
|
|---|
| 2 | task('foo', function () {
|
|---|
| 3 | console.log('ran top-level foo');
|
|---|
| 4 | });
|
|---|
| 5 |
|
|---|
| 6 | task('bar', function () {
|
|---|
| 7 | console.log('ran top-level bar');
|
|---|
| 8 | });
|
|---|
| 9 |
|
|---|
| 10 | task('zerb', function () {
|
|---|
| 11 | console.log('ran zerb');
|
|---|
| 12 | });
|
|---|
| 13 |
|
|---|
| 14 | namespace('zooby', function () {
|
|---|
| 15 | task('zerp', function () {});
|
|---|
| 16 |
|
|---|
| 17 | task('derp', ['zerp'], function () {});
|
|---|
| 18 |
|
|---|
| 19 | namespace('frang', function () {
|
|---|
| 20 |
|
|---|
| 21 | namespace('w00t', function () {
|
|---|
| 22 | task('bar', function () {
|
|---|
| 23 | console.log('ran zooby:frang:w00t:bar');
|
|---|
| 24 | });
|
|---|
| 25 | });
|
|---|
| 26 |
|
|---|
| 27 | task('asdf', function () {});
|
|---|
| 28 | });
|
|---|
| 29 |
|
|---|
| 30 | });
|
|---|
| 31 |
|
|---|
| 32 | namespace('hurr', function () {
|
|---|
| 33 | namespace('durr');
|
|---|
| 34 | });
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.