Changeset 4930
- Timestamp:
- 13/05/08 17:31:33 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Trunk/contributors/JonathanLister/verticals/SlidyTiddly/plugins/ListOrderingPlugin.js
r4928 r4930 50 50 config.macros.reorderTiddlerList = { 51 51 handler : function(place,macroName,params,wikifier,paramString,tiddler){ 52 if(params && store.getTiddlerText(params[0])) { 52 if(params && params[0]) { 53 createTiddlyElement(place,"span"); 54 span.setAttribute("refresh","tiddler"); 55 span.setAttribute("tiddler",params[0]); 53 56 var list = store.getTiddlerText(params[0]).split('\n'); 54 57 ListOrdering.init(place,list,function(newlist){config.macros.reorderTiddlerList.cb(newlist,params[0]);}); 55 58 } else { 56 wikify("There is nothing in this tiddler!",place);59 return; 57 60 } 58 61 }, Trunk/contributors/JonathanLister/verticals/SlidyTiddly/tiddlers/Welcome.tiddler
r4928 r4930 4 4 Slidy is a tool built by the W3C to easily create a HTML presentation. With ~TiddlySlidy, this becomes even easier. 5 5 6 Example Slidy presentations you can import from the W3C site: 7 http://www.w3.org/Talks/Tools/Slidy/ 8 http://www.w3.org/2006/02/woa/</pre> 6 Example Slidy presentation you can import from the W3C site: 7 http://www.w3.org/Talks/Tools/Slidy/</pre> 9 8 </div>