Socket
Socket
Sign inDemoInstall

almanac

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    almanac

HTML5 calendar element. Not ready for production.


Version published
Weekly downloads
2
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Almanac

In early development

HTML5 calendar element

Usage

Link almanaque.js from your html file

<script src="path/to/almanaque.js"></script>

or require it with Browserify:

var Almanac = require('path/to/almanac')

almanac.createCalendar( target, options )

Create an almanac in/at target with passed options.

Parameters:

  • target HTML element: Element to replace, or embed in the almanac
  • options Object

Example:

// get a HTML element
var elem = document.getElementById( 'myCalendar' );

// or create one and insert when you want
// var elem = document.createElement( 'div' );
// elem.setAttribute( 'name', 'myCalendarName')

// then create a calendar
var calendar = almanac.createCalendar( elem, {
multi: true,
showMonths: 2
});
options:
  • name: Sets name as input name
  • multi: Sets single (input[type="radio"]) or multiple (input[type="checkbox"]) day selection.
  • showMonths: Months to show in calendar at once
  • id: Set id as almanac element id
  • classes: Add classes to almanac element. Separated by spaces
  • monthNames: List of month names. English names by default
  • firstDay: A day from first month to show in almanac
  • title: title for header calendar
  • noHeader: Don't show almanac header
  • binding: function to launch when day is clicked. Signature: checked (bool), day data (object)
  • start: first enabled day (format: YYYYMMDD)
  • end: last enabled day (format: YYYYMMDD)

Tests

To run tests (mocha & chai):

npm install && npm test




© 2014 jacoborus

Released under MIT License

Keywords

FAQs

Last updated on 28 Jun 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc