%PDF- %PDF-
Direktori : /var/www/html/news/public/bower_components/ng-flow/src/directives/ |
Current File : /var/www/html/news/public/bower_components/ng-flow/src/directives/init.js |
angular.module('flow.init', ['flow.provider']) .controller('flowCtrl', ['$scope', '$attrs', '$parse', 'flowFactory', function ($scope, $attrs, $parse, flowFactory) { var options = angular.extend({}, $scope.$eval($attrs.flowInit)); // use existing flow object or create a new one var flow = $scope.$eval($attrs.flowObject) || flowFactory.create(options); var catchAllHandler = function(eventName){ var args = Array.prototype.slice.call(arguments); args.shift(); var event = $scope.$broadcast.apply($scope, ['flow::' + eventName, flow].concat(args)); if ({ 'progress':1, 'filesSubmitted':1, 'fileSuccess': 1, 'fileError': 1, 'complete': 1 }[eventName]) { $scope.$apply(); } if (event.defaultPrevented) { return false; } }; flow.on('catchAll', catchAllHandler); $scope.$on('$destroy', function(){ flow.off('catchAll', catchAllHandler); }); $scope.$flow = flow; if ($attrs.hasOwnProperty('flowName')) { $parse($attrs.flowName).assign($scope, flow); $scope.$on('$destroy', function () { $parse($attrs.flowName).assign($scope); }); } }]) .directive('flowInit', [function() { return { scope: true, controller: 'flowCtrl' }; }]);