[open-ils-commits] [GIT] Evergreen ILS branch master updated. 2504bce0aecea4e09f04360da05cac9de07fea7b

Evergreen Git git at git.evergreen-ils.org
Fri Jun 30 11:57:33 EDT 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  2504bce0aecea4e09f04360da05cac9de07fea7b (commit)
      from  e3470259fc793f008e24019692924ce4ca8b9416 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 2504bce0aecea4e09f04360da05cac9de07fea7b
Author: Bill Erickson <berickxx at gmail.com>
Date:   Fri Jun 30 11:24:12 2017 -0400

    LP#1653998 Remove undefined $routeProvider reference
    
    Avoid 'grunt test' failure "Unknown provider: $routeProvider" resulting
    from $routeProvider references in startup.js (egCoreMod) without first
    loading the ngRoute module.
    
    $routeProvider is not needed by the original patch.
    
    Signed-off-by: Bill Erickson <berickxx at gmail.com>
    Signed-off-by: Mike Rylander <mrylander at gmail.com>

diff --git a/Open-ILS/web/js/ui/default/staff/services/startup.js b/Open-ILS/web/js/ui/default/staff/services/startup.js
index 79e48ed..ea114d2 100644
--- a/Open-ILS/web/js/ui/default/staff/services/startup.js
+++ b/Open-ILS/web/js/ui/default/staff/services/startup.js
@@ -13,8 +13,8 @@
 
 angular.module('egCoreMod')
 
-.config(['$routeProvider','$locationProvider','$compileProvider',
- function($routeProvider , $locationProvider , $compileProvider) {
+.config(['$locationProvider','$compileProvider',
+ function($locationProvider , $compileProvider) {
     $locationProvider.html5Mode(true);
     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|blob):/);
 }])

-----------------------------------------------------------------------

Summary of changes:
 .../web/js/ui/default/staff/services/startup.js    |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list