質問編集履歴

1

GET POSITIONボタンを押した時のconsoleの表示 のところに追記しました

2016/06/12 07:22

投稿

ayanon
ayanon

スコア12

test CHANGED
File without changes
test CHANGED
@@ -120,6 +120,28 @@
120
120
 
121
121
  errorCallback @ index.js:19
122
122
 
123
+
124
+
125
+
126
+
127
+ 追記(エラー箇所)
128
+
129
+ function errorCallback(error) {
130
+
131
+ ExcService.throwException(); <= index.js:19
132
+
133
+ }
134
+
135
+ .service("ExcService", function() {
136
+
137
+ this.throwException = function() {
138
+
139
+ throw new Error(); <= index.js:33
140
+
141
+ }
142
+
143
+ })
144
+
123
145
  ```
124
146
 
125
147