This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function ModalController($scope, $uibModalInstance) { | |
| $scope.data = {}; | |
| $scope.data.form = {}; | |
| $scope.close = function() { | |
| $uibModalInstace.close($scope.data.form); | |
| } | |
| $scope.cancel = function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| angular.service('AuthService', function($q, $http) { | |
| var authStuff, promise; | |
| this.login = function(credentials) { | |
| if (!authStuff) { | |
| promise = $http.post(...).then(function(response) { authStuff = response.data; }); | |
| } | |
| return $q(function(resolve, reject) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.controller('FormlyMultiCheckboxController', ['$scope', FormlyMultiCheckboxController]); | |
| function FormlyMultiCheckboxController($scope) { | |
| var to = $scope.to; | |
| var opts = $scope.options; | |
| $scope.multiCheckbox = { | |
| checked: [], | |
| change: setModel, | |
| selectAll: false, | |
| toggleSelectAll: toggleSelectAll |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var app = angular.module('app', []); | |
| app.service('MyHttpService', ['$http', MyHttpService]); | |
| function MyHttpService($http) { | |
| this.doHttpCall = function() { | |
| return $http.get('/foo.json'); | |
| }; | |
| } | |
| app.service('MyService', ['$q', MyService]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| define(['angular-animate', | |
| 'angular-messages'], function() { | |
| 'use strict'; | |
| var app = angular.module('my-module', [ | |
| 'ngRoute', | |
| 'ngAnimate', | |
| 'ngMessages']); | |
| app.config(['$logProvider', '$routeProvider', 'DashboardConstants', InitializeRouteProvider]); | |
| app.config(['$httpProvider', InitializeHttpProvider]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="form-group" | |
| data-ng-class="{'has-error': options.validation.errorExistsAndShouldBeVisible}"> | |
| <label for="{{ ::id }}" class="control-label"> | |
| {{ ::to.label }} | |
| <span data-ng-if="::to.required" class="text-red">*</span> | |
| </label> | |
| <formly-transclude></formly-transclude> | |
| <div class="my-messages" data-my-messages="options"></div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function IsolateFormDirective() { | |
| return { | |
| restrict: 'A', | |
| require: '?form', | |
| link: function link(scope, $element, attrs, formController) { | |
| if (!formController) { | |
| return; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <!-- include angular --> | |
| </head> | |
| <body data-ng-app='app'> | |
| <div data-ng-controller='MyController as MyController'> | |
| <!-- bound once --> | |
| Controller Loaded: {{ ::MyController.someModel.controllerLoaded }} | |
| <hr/> | |
| <!-- two-way binding --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| define(function () { | |
| 'use strict'; | |
| angular.module('qualifier-directives', []) | |
| .directive('qualifierStatistics', | |
| function () { | |
| function processStatistics($scope, mode) { | |
| // sort the normalized statistics in decending order based on the count |