Source: directive/inputDate.js

// Generated by CoffeeScript 1.12.7

/**
 * Input date fields
 * @module
 */
'use strict';
app.directive('inputDate', [
  function() {
    return {
      restrict: 'A',
      link: function($scope, $element) {
        try {
          $element[0].type = 'date';
        } catch (error) {

        }
      }
    };
  }
]);

//# sourceMappingURL=inputDate.js.map