@hackage js-flot0.8.3
Obtain minified flot code
Categories
License
MIT
Maintainer
Neil Mitchell <ndmitchell@gmail.com>
Links
Versions
- 0.8.3 Mon, 10 Nov 2014
Installation
Dependencies (1)
Dependents (6)
@hackage/acme-everything, @hackage/rattle, @hackage/criterion, @hackage/hls-graph, @hackage/hoogle, @hackage/shake
js-flot

This package bundles the minified Flot code (a jQuery plotting library) into a Haskell package, so it can be depended upon by Cabal packages. The first three components of the version number match the upstream Flot version. The package is designed to meet the redistribution requirements of downstream users (e.g. Debian). As an example:
import qualified Language.Javascript.Flot as Flot
main = do
putStrLn $ "Flot version " ++ show Flot.version ++ " source:"
putStrLn =<< readFile =<< Flot.file Flot.Flot
Note that Flot depends on jQuery, a Haskell version of which can be obtained
from the js-jquery package.