[open-ils-commits] [GIT] Evergreen ILS branch rel_2_12 updated. fe6b27a5e92e42e6d63fe02abadeac3d1e49026b
Evergreen Git
git at git.evergreen-ils.org
Fri Jun 30 11:57:45 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, rel_2_12 has been updated
via fe6b27a5e92e42e6d63fe02abadeac3d1e49026b (commit)
from 5461b6973cf7200afaa97300aa0a963ba9d4711c (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 fe6b27a5e92e42e6d63fe02abadeac3d1e49026b
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 3219b1e..baf78ab 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