Skip to content

yama-dev/js-calendar-module

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CALENDAR MODULE

Create Calender library.



Demo

Installation,Download


Using

NPM Usage

# install npm.
npm install --save @yama-dev/js-calendar-module
// import.
import CALENDAR_MODULE from '@yama-dev/js-calendar-module';

Basic Standalone Usage

<script src="./js-calendar-module.js"></script>
<script>
  let CM =  new CALENDAR_MODULE({
    monday_start     : false,
    day_of_week_list : ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
    auto_render      : true,
    on: {
      Load: function(date){
        console.log(date);
      },
      Change: function(date){
        console.log(date);
      }
    }
  });
</script>

API

Options

Parameter Type Default Description




Dependencies

none





Licence

MIT


Author

yama-dev