0.2.4 • Published 9 years ago

ember-cli-calendario v0.2.4

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

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

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
	}

});