Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Changed directory name from 'autoload' to 'yui_modules' for the YUI m…
Browse files Browse the repository at this point in the history
…odules example.
  • Loading branch information
Joe Catera committed Dec 4, 2012
1 parent 438fd9b commit e87716d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions examples/developer-guide/yui_module/README.txt
Expand Up @@ -6,10 +6,10 @@ Create project and mojit
mojito create app simple yui_module
mojito create mojit simple Notepad

Put a YUI Gallery Module in ./yui_module/autoload AND rename it to include an affinity:
Put a YUI Gallery Module in ./yui_modules/ AND rename it to include an affinity:

mkdir ./yui_module/autoload
wget -O ./yui_module/autoload/storage-lite.client.js \
mkdir ./yui_modules/
wget -O ./yui_modules/storage-lite.client.js \
https://raw.github.com/rgrove/storage-lite/master/src/storage-lite.js

Edit application.json "specs":
Expand Down
Expand Up @@ -38,5 +38,5 @@ YUI.add('NotepadBinderIndex', function (Y, NAME) {
};

}, '0.0.1', {requires: [
'gallery-storage-lite' //see autoload/storage-lite.client.js
'gallery-storage-lite' //see yui_modules/storage-lite.client.js
]});
2 changes: 1 addition & 1 deletion examples/developer-guide/yui_module/package.json
@@ -1,6 +1,6 @@
{
"name": "yui_module",
"description": "example mojit showing how to load YUI modules that are in the autoload directory.",
"description": "example mojit showing how to load YUI modules that are in the yui_modules directory.",
"version": "0.0.1",
"author": {
"name": "Isao Yagi",
Expand Down

0 comments on commit e87716d

Please sign in to comment.