apostrophe/data/media/table_editor/handsontable/dist
Wolf Vollprecht 7307694602 added experimental features for table inline editing and also latex formula editing 2015-06-05 18:37:58 +02:00
..
moment added experimental features for table inline editing and also latex formula editing 2015-06-05 18:37:58 +02:00
pikaday added experimental features for table inline editing and also latex formula editing 2015-06-05 18:37:58 +02:00
zeroclipboard added experimental features for table inline editing and also latex formula editing 2015-06-05 18:37:58 +02:00
README.md added experimental features for table inline editing and also latex formula editing 2015-06-05 18:37:58 +02:00
handsontable.css added experimental features for table inline editing and also latex formula editing 2015-06-05 18:37:58 +02:00
handsontable.full.css added experimental features for table inline editing and also latex formula editing 2015-06-05 18:37:58 +02:00
handsontable.full.js added experimental features for table inline editing and also latex formula editing 2015-06-05 18:37:58 +02:00
handsontable.full.min.css added experimental features for table inline editing and also latex formula editing 2015-06-05 18:37:58 +02:00
handsontable.full.min.js added experimental features for table inline editing and also latex formula editing 2015-06-05 18:37:58 +02:00
handsontable.js added experimental features for table inline editing and also latex formula editing 2015-06-05 18:37:58 +02:00

README.md

Handsontable distributions

The full distribution allows you to use Handsontable by just including 2 files:

<script src="dist/handsontable.full.js"></script>
<link rel="stylesheet" media="screen" href="dist/handsontable.full.css">

(It may also require Pikaday and moment.js, if you're using the Datepicker for date input)

handsontable.full.js and handsontable.full.css are compiled with all the needed dependencies.

Using this has the same effect as loading all the dependencies from the Bare distribution (see below).

Bare distribution

If you are a "Bob the Builder" kind of hacker, you will need to load Handsontable JS, CSS and their dependencies:

<script src="dist/handsontable.js"></script>
<script src="lib/numeral.js"></script>
<link rel="stylesheet" media="screen" href="dist/handsontable.css">

handsontable.js and handsontable.css are compiled without the needed dependencies.

Custom distribution

If you want to build your own custom Handsontable package distribution check out our tool designed for this.