Skip to content

Commit

Permalink
Documentation updates for 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davebalmer committed Nov 25, 2013
1 parent 5ddcb40 commit bdc2045
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 6 deletions.
6 changes: 4 additions & 2 deletions docs/classhierarchy.mdown
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ User Interface
* joControl
* joButton
* joBackButton
* joCanvas
* joCaption
* joExpando
* joSelect
Expand All @@ -43,7 +44,6 @@ User Interface
* joSelectList
* joTabBar
* joTable
* joKnob
* joSlider
* joToggle
* joOption
Expand Down Expand Up @@ -75,7 +75,7 @@ Processing

* joChain
* joDefer
* joWait
* joQueue

Utility
-------
Expand All @@ -85,7 +85,9 @@ Utility
* joJSON
* joLocal
* joString
* joTemplate
* joTime
* joTimer

Debugging
---------
Expand Down
1 change: 1 addition & 0 deletions docs/releasenotes.mdown
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Jo 0.5.0 "Pumpkin Spice"
- New joCanvas widget, a basic canvas tag wrapper
- New joImage widget
- New joTemplate class for simple string templating
- Added placeholder support to joInput

Jo 0.4.1
--------
Expand Down
6 changes: 6 additions & 0 deletions js/ui/canvas.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/**
joCanvas
========
Simple canvas wrapper control.
*/

function joCanvas(w, h) {
this.canvas = joDOM.create("canvas");
Expand Down
4 changes: 3 additions & 1 deletion js/ui/gesture.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
- `backEvent`
Fired when `ESC` key is pressed (on webOS, the back gesture fires an `ESC` key)
Fired when `ESC` key is pressed (on webOS, the back gesture fires an `ESC` key),
also used to hook in hardware back buttons for different platforms (e.g.
Tizen, Android).
- `resizeEvent`
Expand Down
7 changes: 5 additions & 2 deletions js/ui/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@
// simple value, simple field
var x = new joInput(a);
// set up a simple joRecord instance with some default data
// OR set up a simple joRecord instance with some default data
var pref = new joRecord({
username: "Bob",
password: "password"
});
// attach the value to a data structure property
// AND attach the value to a data structure property
var y = new joInput(pref.link("username"));
// set an input with a placehlder string
var z = new joInput(b, "Placeholder");
Extends
-------
Expand Down
2 changes: 1 addition & 1 deletion makedoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
#../joDoc/jodoc --toc ~/Projects/jodocs/contents.mdown --template ~/Projects/jodocs/template.html --title "Jo HTML5 Mobile JavaScript Framework" --output ~/Projects/jodocs/docs ABOUT.mdown LICENSE.mdown README.mdown js/core/*.js js/data/*.js js/ui/*.js docs/*.mdown
#../joDoc/jodoc --toc ~/Projects/jodocs/contents.mdown --template ~/Projects/jodocs/template.html --title "Jo HTML5 Mobile JavaScript Framework 0.5.0" --output ~/Projects/jodocs/docs ABOUT.mdown LICENSE.mdown README.mdown js/core/*.js js/data/*.js js/ui/*.js docs/*.mdown
#cat ABOUT.mdown README.mdown docs/*.mdown LICENSE.mdown > /tmp/jo.mdown
#cat js/core/*.js js/data/*.js js/ui/*.js > /tmp/jo.js
#../joDoc/jodoc --template ~/Projects/jodocs/singletemplate.html --title "Jo HTML5 Mobile JavaScript Framework" /tmp/jo.js /tmp/jo.mdown > ~/Projects/jodocs/docs/singlepage.html
Expand Down

0 comments on commit bdc2045

Please sign in to comment.