Sha256: aa64c4d6b2be97cae025a665258b1631d7540456b44be7f07b13f137a480b22d

Contents?: true

Size: 1.52 KB

Versions: 16

Compression:

Stored size: 1.52 KB

Contents

/*!
 * Angular Material Design
 * https://github.com/angular/material
 * @license MIT
 * v0.7.1
 */
goog.provide('ng.material.components.swipe');

(function() {
'use strict';


/**
 * @ngdoc module
 * @name material.components.swipe
 * @description Swipe module!
 */
/**
 * @ngdoc directive
 * @module material.components.swipe
 * @name mdSwipeLeft
 *
 * @restrict A
 *
 * @description
 * The md-swipe-left directives allows you to specify custom behavior when an element is swiped
 * left.
 *
 * @usage
 * <hljs lang="html">
 * <div md-swipe-left="onSwipeLeft()">Swipe me left!</div>
 * </hljs>
 */

/**
 * @ngdoc directive
 * @module material.components.swipe
 * @name mdSwipeRight
 *
 * @restrict A
 *
 * @description
 * The md-swipe-right directives allows you to specify custom behavior when an element is swiped
 * right.
 *
 * @usage
 * <hljs lang="html">
 * <div md-swipe-right="onSwipeRight()">Swipe me right!</div>
 * </hljs>
 */

var module = angular.module('material.components.swipe',[]);

['SwipeLeft', 'SwipeRight'].forEach(function(name) {
  var directiveName = 'md' + name;
  var eventName = '$md.' + name.toLowerCase();

  module.directive(directiveName, /*@ngInject*/ ["$parse", function($parse) {
    return {
      restrict: 'A',
      link: postLink
    };

    function postLink(scope, element, attr) {
      var fn = $parse(attr[directiveName]);

      element.on(eventName, function(ev) {
        scope.$apply(function() {
          fn(scope, {
            $event: ev
          });
        });
      });

    }
  }]);
});

})();

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
sw2at-ui-0.0.16 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.15 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.14 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.13 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.12 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.11 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.10 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.9 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.8 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.7 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.6 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.5 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.4 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.3 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.2 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js
sw2at-ui-0.0.1 app/assets/javascripts/swat/bower_components/angular-material/modules/closure/swipe/swipe.js