This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Bundles
Matt Bates edited this page Jun 30, 2017
·
1 revision
The ManyWho UI framework is split into discrete parts (or bundles) that split responsibility. Currently there are 2 supported bundles that are loaded by default for the HTML5 player: core
and bootstrap3
.
The core
bundle includes all the core services that handle all the "backend" modelling. The bootstrap3
bundle includes all the bootstrap 3 implementation of the supported components.
Bundles can be loaded via the requires
property on the root manywho
object i.e.
var manywho = {
requires: ['core', 'bootstrap3'],
...
}
...