ember-cli-calendario

Full calendar component for ember-cli apps

Usage no npm install needed!

<script type="module">
  import emberCliCalendario from 'https://cdn.skypack.dev/ember-cli-calendario';
</script>

README

Ember-cli-calendario

Build Status

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
    }

});