Skip to content

Commit

Permalink
starting work on TitleService simplification
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjosh-zz committed Apr 25, 2015
1 parent e338e6a commit 029b89d
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 37 deletions.
8 changes: 1 addition & 7 deletions src/app/index.js
Expand Up @@ -41,7 +41,7 @@ angular.module('civicClient', [
// @ngInject
function appConfig($provide) {
// log all rootScope events to the console for debugging
// (this code should be commented out before building for production!!)
// (this code should be commented out before building for production)
//$provide.decorator('$rootScope', function ($delegate) {
// var _emit = $delegate.$emit;
//
Expand Down Expand Up @@ -127,11 +127,5 @@ angular.module('ui.gravatar').config([
size : 32,
'default': 'retro' // retro 8-bit style as default for missing avatars
};

// Use https endpoint
// gravatarServiceProvider.secure = true;

// Force protocol
// gravatarServiceProvider.protocol = 'my-protocol';
}
]);
1 change: 1 addition & 0 deletions src/app/views/events/genes/summary/geneSummary.tpl.html
Expand Up @@ -21,4 +21,5 @@
</ui-view>
</div>
</div>

</div>
60 changes: 30 additions & 30 deletions src/index.html
Expand Up @@ -22,7 +22,7 @@

<!-- build:css({.tmp,src}) styles/app.css -->

<!-- Common Component Styles -->
<!-- ** Common Component Styles ** -->
<link rel="stylesheet" href="app/index.css">
<link rel="stylesheet" href="app/pages/home.css">
<link rel="stylesheet" href="app/pages/pages.css">
Expand All @@ -38,7 +38,7 @@

<link rel="stylesheet" href="app/views/browse/browse.css">

<!-- Events Styles -->
<!-- ** Events Styles ** -->
<link rel="stylesheet" href="app/views/events/common/entityTalkView.css">
<link rel="stylesheet" href="app/views/events/common/entityTabs.css">
<link rel="stylesheet" href="app/views/events/common/entityView.css">
Expand All @@ -55,34 +55,34 @@
<link rel="stylesheet" href="app/views/events/common/entityTalkRevisionsView.css">
<link rel="stylesheet" href="app/views/events/common/entityTalkRevisionSummary.css">

<!-- Genes Styles -->
<!-- ** Genes Styles ** -->
<link rel="stylesheet" href="app/views/events/genes/summary/geneDescription.css">
<link rel="stylesheet" href="app/views/events/genes/summary/geneSummary.css">
<link rel="stylesheet" href="app/views/events/genes/summary/myGeneInfo.css">
<link rel="stylesheet" href="app/views/events/genes/summary/myGeneInfo.css">
<link rel="stylesheet" href="app/views/events/genes/summary/variantMenu.css">
<link rel="stylesheet" href="app/views/events/genes/edit/editGene.css">

<!-- Gene Talk Styles -->
<!-- ** Gene Talk Styles ** -->
<link rel="stylesheet" href="app/views/events/genes/talk/GeneTalkView.css">

<!-- Gene Talk Revisions Styles -->
<!-- ** Gene Talk Revisions Styles ** -->
<link rel="stylesheet" href="app/views/events/genes/talk/GeneTalkRevisionsView.css">

<!-- Variants Styles -->
<!-- ** Variants Styles ** -->
<link rel="stylesheet" href="app/views/events/variants/summary/variantSummary.css">
<link rel="stylesheet" href="app/views/events/variants/summary/evidenceGrid.css">

<!-- Variant Talk Styles -->
<!-- ** Variant Talk Styles ** -->
<link rel="stylesheet" href="app/views/events/variants/talk/VariantTalkView.css">

<!-- Variant Talk Revisions Styles -->
<!-- ** Variant Talk Revisions Styles ** -->
<link rel="stylesheet" href="app/views/events/variants/talk/VariantTalkRevisionsView.css">

<!-- Evidence Styles -->
<!-- ** Evidence Styles ** -->
<link rel="stylesheet" href="app/views/events/evidence/summary/evidenceSummary.css">

<!-- Evidence Talk Styles -->
<!-- ** Evidence Talk Styles ** -->
<link rel="stylesheet" href="app/views/events/evidence/talk/EvidenceTalkView.css">

<!-- endbuild -->
Expand Down Expand Up @@ -186,44 +186,44 @@

<!-- build:js({.tmp,src}) scripts/app.js -->

<!-- Core Config/Startup Components -->
<!-- ** Core Config/Startup Components ** -->
<script src="app/index.js"></script>
<script src="components/appStates.js"></script>
<script src="components/filters.js"></script>

<!--Login & Auth Components-->
<!-- ** Login & Auth Components ** -->
<script src="components/security/login/LoginService.js"></script>
<script src="components/security/login/LoginFormController.js"></script>
<script src="components/security/Security.js"></script>
<script src="components/security/RetryQueue.js"></script>
<script src="components/security/Interceptor.js"></script>
<script src="components/security/Authorization.js"></script>

<!--Genes Services-->
<!-- ** Genes Services ** -->
<script src="components/services/GenesService.js"></script>
<script src="components/services/GeneCommentsService.js"></script>
<script src="components/services/GenesSuggestedChangesService.js"></script>
<script src="components/services/GenesSuggestedChangesCommentsService.js"></script>

<!--Variant Groups Services-->
<!-- ** Variant Groups Services ** -->
<script src="components/services/VariantGroupsService.js"></script>
<script src="components/services/VariantGroupsCommentsService.js"></script>
<script src="components/services/VariantGroupsSuggestedChangesService.js"></script>
<script src="components/services/VariantGroupsSuggestedChangesCommentsService.js"></script>

<!--Variants Services-->
<!-- ** Variants Services ** -->
<script src="components/services/VariantsService.js"></script>
<script src="components/services/VariantsSuggestedChangesService.js"></script>
<script src="components/services/VariantCommentsService.js"></script>
<script src="components/services/VariantsSuggestedChangesCommentsService.js"></script>

<!--Evidence Services-->
<!-- ** Evidence Services ** -->
<script src="components/services/EvidenceService.js"></script>
<script src="components/services/EvidenceSuggestedChangesService.js"></script>
<script src="components/services/EvidenceCommentsService.js"></script>
<script src="components/services/EvidenceSuggestedChangesCommentsService.js"></script>

<!--Misc Services-->
<!-- ** Misc Services ** -->
<script src="components/services/ConfigService.js"></script>
<script src="components/services/DatatablesService.js"></script>
<script src="components/services/TypeAheadService.js"></script>
Expand All @@ -233,14 +233,14 @@
<script src="components/services/LodashFactory.js"></script>
<script src="components/services/LodashFilters.js"></script>

<!--Pages Controls-->
<!-- ** Pages Controls ** -->
<script src="app/pages/HomeCtrl.js"></script>
<script src="app/pages/HelpCtrl.js"></script>
<script src="app/pages/ContactCtrl.js"></script>
<script src="app/pages/GlossaryCtrl.js"></script>
<script src="app/pages/CollaborateCtrl.js"></script>

<!--Layout Directives-->
<!-- ** Layout Directives ** -->
<script src="components/directives/title.js"></script>
<script src="components/directives/subheader.js"></script>
<script src="components/directives/sessionInfo.js"></script>
Expand All @@ -253,11 +253,11 @@
<script src="components/directives/loginToolbar.js"></script>
<script src="components/directives/userImage.js"></script>

<!--Browse Controllers and Directives-->
<!-- ** Browse Controllers and Directives ** -->
<script src="app/views/browse/BrowseViewConfig.js"></script>
<script src="app/views/browse/BrowseController.js"></script>

<!-- Events Controllers and Directives -->
<!-- ** Events Controllers and Directives ** -->
<script src="app/views/events/EventsView.js"></script>
<script src="app/views/events/common/entityView.js"></script>
<script src="app/views/events/common/entityTabs.js"></script>
Expand All @@ -275,39 +275,39 @@
<script src="app/views/events/common/entityCommentForm.js"></script>
<script src="app/views/events/common/entityLogEntry.js"></script>

<!-- Genes Controllers and Directives -->
<!-- ** Genes Controllers and Directives ** -->
<script src="app/views/events/genes/GenesViewController.js"></script>
<script src="app/views/events/genes/summary/geneSummary.js"></script>
<script src="app/views/events/genes/summary/geneDescription.js"></script>
<script src="app/views/events/genes/summary/myGeneInfo.js"></script>
<script src="app/views/events/genes/summary/variantMenu.js"></script>
<script src="app/views/events/genes/edit/editGene.js"></script>

<!-- Genes Talk Controllers and Directives -->
<!-- ** Genes Talk Controllers and Directives ** -->
<script src="app/views/events/genes/talk/GeneTalkViewController.js"></script>

<!-- Gene Talk Revisions Controllers and Directives -->
<!-- ** Gene Talk Revisions Controllers and Directives ** -->
<script src="app/views/events/genes/talk/GeneTalkRevisionsViewController.js"></script>

<!-- Variants Controllers and Directives -->
<!-- ** Variants Controllers and Directives ** -->
<script src="app/views/events/variants/VariantsViewController.js"></script>
<script src="app/views/events/variants/summary/variantSummary.js"></script>
<script src="app/views/events/variants/summary/evidenceGrid.js"></script>

<!-- Variant Talk Controllers and Directives -->
<!-- ** Variant Talk Controllers and Directives ** -->
<script src="app/views/events/variants/talk/VariantTalkViewController.js"></script>

<!-- Variant Talk Revisions Controllers and Directives -->
<!-- ** Variant Talk Revisions Controllers and Directives ** -->
<script src="app/views/events/variants/talk/VariantTalkRevisionsViewController.js"></script>

<!-- Evidence Controllers and Directives -->
<!-- ** Evidence Controllers and Directives ** -->
<script src="app/views/events/evidence/EvidenceViewController.js"></script>
<script src="app/views/events/evidence/summary/evidenceSummary.js"></script>

<!-- Evidence Talk Controllers and Directives -->
<!-- ** Evidence Talk Controllers and Directives ** -->
<script src="app/views/events/evidence/talk/EvidenceTalkViewController.js"></script>

<!-- Variant Group Controllers and Directives -->
<!-- ** Variant Group Controllers and Directives ** -->
<script src="app/views/events/variantGroups/VariantGroupsViewController.js"></script>
<script src="app/views/events/variantGroups/summary/variantGroupSummary.js"></script>

Expand Down

0 comments on commit 029b89d

Please sign in to comment.