Blame view

plugins/pikaday.jquery.js 1.38 KB
5c8f10d65   Tom Huang   start
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  /*!
   * Pikaday jQuery plugin.
   *
   * Copyright © 2013 David Bushell | BSD & MIT license | https://github.com/dbushell/Pikaday
   */
  
  (function (root, factory)
  {
      'use strict';
  
      if (typeof exports === 'object') {
          // CommonJS module
          factory(require('jquery'), require('../pikaday'));
      } else if (typeof define === 'function' && define.amd) {
          // AMD. Register as an anonymous module.
          define(['jquery', 'pikaday'], factory);
      } else {
          // Browser globals
          factory(root.jQuery, root.Pikaday);
      }
  }(this, function ($, Pikaday)
  {
      'use strict';
  
      $.fn.pikaday = function()
      {
          var args = arguments;
  
          if (!args || !args.length) {
              args = [{ }];
          }
  
          return this.each(function()
          {
              var self   = $(this),
                  plugin = self.data('pikaday');
  
              if (!(plugin instanceof Pikaday)) {
                  if (typeof args[0] === 'object') {
                      var options = $.extend({}, args[0]);
                      options.field = self[0];
                      self.data('pikaday', new Pikaday(options));
                  }
              } else {
                  if (typeof args[0] === 'string' && typeof plugin[args[0]] === 'function') {
                      plugin[args[0]].apply(plugin, Array.prototype.slice.call(args,1));
                  }
              }
          });
      };
  
  }));