Remove the old seo-snapshots instrumentation.

This commit is contained in:
yackob03 2013-11-19 10:52:06 -05:00
parent 3a3bde2da9
commit c7355f5509
6 changed files with 5 additions and 11 deletions

View file

@ -26,15 +26,12 @@ function SigninCtrl($scope, $location, $timeout, Restangular, KeyService, UserSe
$scope.sent = false; $scope.sent = false;
}); });
}; };
$scope.status = 'ready';
}; };
function PlansCtrl($scope, $location, UserService, PlanService) { function PlansCtrl($scope, $location, UserService, PlanService) {
// Load the list of plans. // Load the list of plans.
PlanService.getPlans(function(plans) { PlanService.getPlans(function(plans) {
$scope.plans = plans; $scope.plans = plans;
$scope.status = 'ready';
}); });
$scope.$watch( function () { return UserService.currentUser(); }, function (currentUser) { $scope.$watch( function () { return UserService.currentUser(); }, function (currentUser) {
@ -59,7 +56,6 @@ function PlansCtrl($scope, $location, UserService, PlanService) {
} }
function GuideCtrl($scope) { function GuideCtrl($scope) {
$scope.status = 'ready';
} }
function RepoListCtrl($scope, Restangular, UserService) { function RepoListCtrl($scope, Restangular, UserService) {
@ -190,8 +186,6 @@ function LandingCtrl($scope, $timeout, $location, Restangular, UserService, KeyS
}); });
}; };
$scope.status = 'ready';
browserchrome.update(); browserchrome.update();
} }

View file

@ -1,4 +1,4 @@
<div class="container ready-indicator" data-status="{{ status }}"> <div class="container">
<div class="alert alert-warning">Warning: Quay requires docker version 0.6.2 or higher to work</div> <div class="alert alert-warning">Warning: Quay requires docker version 0.6.2 or higher to work</div>
<h2>User Guide</h2> <h2>User Guide</h2>

View file

@ -1,4 +1,4 @@
<div class="jumbotron landing ready-indicator" data-status="{{ status }}"> <div class="jumbotron landing">
<div class="container"> <div class="container">
<div class="row messages"> <div class="row messages">
<div class="col-md-7"> <div class="col-md-7">

View file

@ -1,4 +1,4 @@
<div class="container plans ready-indicator" data-status="{{ status }}"> <div class="container plans">
<div class="callout"> <div class="callout">
Plans &amp; Pricing Plans &amp; Pricing
</div> </div>

View file

@ -2,7 +2,7 @@
<i class="fa fa-spinner fa-spin fa-3x"></i> <i class="fa fa-spinner fa-spin fa-3x"></i>
</div> </div>
<div class="container ready-indicator" ng-show="!loading" data-status="{{ loading ? '' : 'ready' }}"> <div class="container" ng-show="!loading">
<div class="repo-list" ng-show="!user.anonymous"> <div class="repo-list" ng-show="!user.anonymous">
<div ng-class="user.organizations.length ? 'section-header' : ''"> <div ng-class="user.organizations.length ? 'section-header' : ''">
<div class="button-bar-right"> <div class="button-bar-right">

View file

@ -1,4 +1,4 @@
<div class="container signin-container ready-indicator" data-status="{{ loading ? '' : 'ready' }}"> <div class="container signin-container">
<div class="row"> <div class="row">
<div class="col-sm-6 col-sm-offset-3"> <div class="col-sm-6 col-sm-offset-3">
<div class="panel-group" id="accordion"> <div class="panel-group" id="accordion">