ember-cli-calendario
v0.2.4
Published
Full calendar component for ember-cli apps
Downloads
5
Readme
Ember-cli-calendario
A fullCalendar addon for ember-cli DEMO
install addon:
ember install ember-cli-calendario
=====================
add to index.html:
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.6.0/moment.js"></script>
To show calendar use:
<div id="calendar">
{{show-calendario}}
</div>
==================== fullCalendar Options available in addon:
header
defaultDate
theme
buttonIcons
themeButtomIcons
firstDay
isRTL
weekends
hiddenDays
fixedWeekCount
weekNumbers
weekNumberCalculation
businessHours
height
contentHeight
aspectRatio
handleWindowResize
eventLimit
eventLimitClick
[Options details] (http://fullcalendar.io/docs/display/)
This addon will use Full Calendar's default css by default. If you prefer to use your own css, add this option to your Brocfile.js
:
var app = new EmberApp({
emberCliFullCalendarJs: {
includeFullCalendarCss: false
}
});