Merge branch 'master' of https://bitbucket.org/yackob03/quay
This commit is contained in:
commit
4500619ca7
4 changed files with 10 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
quayApp = angular.module('quay', ['restangular'], function($provide) {
|
||||
quayApp = angular.module('quay', ['restangular', 'angularMoment'], function($provide) {
|
||||
$provide.factory('UserService', ['Restangular', function(Restangular) {
|
||||
var userResponse = {
|
||||
verified: false,
|
||||
|
|
|
@ -28,7 +28,11 @@ function RepoCtrl($scope, Restangular, $routeParams, $rootScope) {
|
|||
$('#editModal').modal('hide');
|
||||
$scope.repo.description = $('#descriptionEdit')[0].value;
|
||||
$scope.repo.put();
|
||||
};
|
||||
};
|
||||
|
||||
$scope.parseDate = function(dateString) {
|
||||
return Date.parse(dateString);
|
||||
};
|
||||
|
||||
var namespace = $routeParams.namespace;
|
||||
var name = $routeParams.name;
|
||||
|
|
Reference in a new issue