We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03c5725 commit 71e6ccbCopy full SHA for 71e6ccb
src/ng/templateRequest.js
@@ -1,6 +1,6 @@
1
'use strict';
2
3
-var $compileMinErr = minErr('$compile');
+var $templateRequestMinErr = minErr('$compile');
4
5
/**
6
* @ngdoc provider
@@ -96,7 +96,7 @@ function $TemplateRequestProvider() {
96
97
function handleError(resp) {
98
if (!ignoreRequestError) {
99
- throw $compileMinErr('tpload', 'Failed to load template: {0} (HTTP status: {1} {2})',
+ throw $templateRequestMinErr('tpload', 'Failed to load template: {0} (HTTP status: {1} {2})',
100
tpl, resp.status, resp.statusText);
101
}
102
return $q.reject(resp);
0 commit comments