0.1.5-rc1 • Published 8 years ago

quizmaster v0.1.5-rc1

Weekly downloads
1
License
MIT
Repository
-
Last release
8 years ago

Quizmaster.js

Usage

The main quizmaster module returns an instantiatable class with the following parameters:

  • el (string|jQuery el): Dom selector or jQuery element to put the quiz within.
  • data (object|file location): Javascript object type OR path to a JSON file.

Format of data tbd.

Sample

index.html

<div id="my-wrapper"></div>
<script src="main.js"></script>

main.js:

var quizmaster = require("quizmaster");
var quiz = new quizmaster({
    el: "#my-wrapper",
    data: "data.json"
});

data.json:

{
    // format tbd
}

Installation

$ npm install quizmaster
0.1.5-rc1

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago