mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Main changes: * Use gulpfile now (build was getting way too disorganized with custom tasks; gulpfiles are much easier to build clean custom tasks with than Grunt. * View README#Development for updated commands * Docs written for ionContent, ionHeaderBar, ionInfiniteScroll. * Docs are pushed to ajoslin's fork of ionic-site until they reach a * point where they can be published. **TODO, In Order of Priority** 1. Finish writing source-documentation for all existing components 2. Add multiple versions of docs (one per release & nightly, latest stable release docs being shown by default) 3. Add examples generation 4. Add searchbar to docs
59 lines
1.4 KiB
JavaScript
59 lines
1.4 KiB
JavaScript
/**
|
|
* Create a wrapping module to ease having to include too many
|
|
* modules.
|
|
*/
|
|
|
|
/**
|
|
* @ngdoc module
|
|
* @name ionic
|
|
* @description
|
|
* Ionic main module.
|
|
*/
|
|
|
|
angular.module('ionic.service', [
|
|
'ionic.service.bind',
|
|
'ionic.service.platform',
|
|
'ionic.service.actionSheet',
|
|
'ionic.service.gesture',
|
|
'ionic.service.loading',
|
|
'ionic.service.modal',
|
|
'ionic.service.popup',
|
|
'ionic.service.templateLoad',
|
|
'ionic.service.view',
|
|
'ionic.decorator.location'
|
|
]);
|
|
|
|
// UI specific services and delegates
|
|
angular.module('ionic.ui.service', [
|
|
'ionic.ui.service.scrollDelegate',
|
|
'ionic.ui.service.slideBoxDelegate',
|
|
'ionic.ui.service.sideMenuDelegate',
|
|
]);
|
|
|
|
angular.module('ionic.ui', [
|
|
'ionic.ui.content',
|
|
'ionic.ui.scroll',
|
|
'ionic.ui.tabs',
|
|
'ionic.ui.viewState',
|
|
'ionic.ui.header',
|
|
'ionic.ui.sideMenu',
|
|
'ionic.ui.slideBox',
|
|
'ionic.ui.list',
|
|
'ionic.ui.checkbox',
|
|
'ionic.ui.toggle',
|
|
'ionic.ui.radio',
|
|
'ionic.ui.touch'
|
|
]);
|
|
|
|
|
|
angular.module('ionic', [
|
|
'ionic.service',
|
|
'ionic.ui.service',
|
|
'ionic.ui',
|
|
|
|
// Angular deps
|
|
'ngAnimate',
|
|
'ngSanitize',
|
|
'ui.router'
|
|
]);
|