equal
deleted
inserted
replaced
189 |
189 |
190 if ( component.isSaving ) { |
190 if ( component.isSaving ) { |
191 return; |
191 return; |
192 } |
192 } |
193 |
193 |
194 // Scroll ot the line that has the error. |
194 // Scroll to the line that has the error. |
195 if ( component.lintErrors.length ) { |
195 if ( component.lintErrors.length ) { |
196 component.instance.codemirror.setCursor( component.lintErrors[0].from.line ); |
196 component.instance.codemirror.setCursor( component.lintErrors[0].from.line ); |
197 return; |
197 return; |
198 } |
198 } |
199 |
199 |