This file contains 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-uuid created by Ivan Hayes @munkychop | |
// MIT License - http://opensource.org/licenses/mit-license.php | |
// -------------------------------------------------------------- | |
// This is an AngularJS wrapper for the original node-uuid library | |
// written by Robert Kieffer – https://github.com/broofa/node-uuid | |
// MIT License - http://opensource.org/licenses/mit-license.php | |
// The wrapped node-uuid library is at version 1.4.7 | |
function AngularUUID () { | |
'use strict'; |
This file contains 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.module('angular-talent-demo', ['angular-uuid']) | |
.controller('TalentFormController', ['$scope', '$timeout', 'TalentService', function($scope, $timeout, TalentService) { | |
$scope.talent = {}; | |
$scope.formData = {}; | |
$scope.formErrors = {}; | |
$scope.selected = function(obj) { | |
const selected = []; |