Skip to content

Commit

Permalink
fix push
Browse files Browse the repository at this point in the history
  • Loading branch information
PDE3056 committed Feb 15, 2014
1 parent eb50b77 commit d8ae328
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<source>1.7</source>
<target>1.7</target>
<excludes>
<exclude>**/*Point*.java</exclude>
</excludes>
Expand Down
6 changes: 4 additions & 2 deletions src/main/webapp/app/controller/FileController.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,10 @@ Ext.define('app.controller.FileController', {
var store=this.getStore("Lines");
store.load();
},
callback: function(){
this.waitEventIntern(eventName);
callback: function(a,opts){
if(opts) {
this.waitEventIntern(eventName);
}
}
});
}
Expand Down

0 comments on commit d8ae328

Please sign in to comment.