Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix preload bug in Desktop #39

Open
wants to merge 3 commits into
base: v0.3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ src/vendor
cache
teste.py

ignore-*
14 changes: 2 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@

**Behavior3 Editor** is the official visual editor for the **Behavior3** libraries. It can be accessed online or you can download it to have handle local projects.

- Info: http://behavior3.com
- Editor: http://editor.behavior3.com


## Why Behavior3 Editor?

Expand Down Expand Up @@ -46,13 +43,6 @@ Nothing is perfect =( . Behavior3 Editor focus on Chrome (thus, working pretty w

## Looking for Behavior Tree Libraries?

See http://behavior3.com for a complete list of libraries.

*If you have implemented an library compatible with Behavior3 schematics, tell me and I link it there*.


## Want to Contribute?

Take a look at the issue list, suggest new features, report bugs, send me pull requests, write documentation and tutorials. There are many ways to contribute, do what you know and you can make Behavior3 Editor better!
- https://github.com/behavior3/behavior3js
- https://github.com/behavior3/behavior3py

- More info: http://behavior3.com/donation
5 changes: 4 additions & 1 deletion src/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ angular.module('app', [
.openProject(projects[0].path)
.then(function() {
closePreload();
});
}, function() {
//if rename or delete the exist project file may cause stay in Preload page(Desktop)
closePreload();
});
} else {
closePreload();
}
Expand Down