| 1 | NAME |
|---|
| 2 | JsonSlide -- simple slides from JSON |
|---|
| 3 | |
|---|
| 4 | DESCRIPTION |
|---|
| 5 | JsonSlide makes simple slides that could be include title, description |
|---|
| 6 | and list and navigated by keystroke. Sample is below. |
|---|
| 7 | var slide=[ |
|---|
| 8 | ["Title","Signature"], |
|---|
| 9 | ["Slide Title1","Description",["list1","list2"]], |
|---|
| 10 | ["Slide Title2","Description",{"d":["list1","list2"]}] |
|---|
| 11 | ]; |
|---|
| 12 | |
|---|
| 13 | SEE ALSO |
|---|
| 14 | sample.html. It shows various type of list and you can navigate it. |
|---|
| 15 | |
|---|
| 16 | AUTHOR |
|---|
| 17 | Takuo Kadoya <takuo.kadoya@gmail.com> |
|---|
| 18 | |
|---|
| 19 | COPYRIGHT |
|---|
| 20 | The MIT License Permission is hereby granted, free of charge, to any |
|---|
| 21 | person obtaining a copy of this software and associated documentation |
|---|
| 22 | files (the "Software"), to deal in the Software without restriction, |
|---|
| 23 | including without limitation the rights to use, copy, modify, merge, |
|---|
| 24 | publish, distribute, sublicense, and/or sell copies of the Software, and |
|---|
| 25 | to permit persons to whom the Software is furnished to do so, subject to |
|---|
| 26 | the following conditions: |
|---|
| 27 | |
|---|
| 28 | The above copyright notice and this permission notice shall be included |
|---|
| 29 | in all copies or substantial portions of the Software. |
|---|
| 30 | |
|---|
| 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
|---|
| 32 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
|---|
| 33 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
|---|
| 34 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT BE LIABLE FOR ANY CLAIM, |
|---|
| 35 | DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
|---|
| 36 | OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR |
|---|
| 37 | THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
|---|
| 38 | |
|---|