Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a434eb commit e854937Copy full SHA for e854937
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