Skip to content

Commit

Permalink
Upgrade to version 0.11.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpmarks committed Jun 15, 2016
1 parent 149b49d commit 6d8acf9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "skulpt",
"version": "0.11.0",
"version": "0.11.0.1",
"main": [ "./skulpt.js", "./skulpt-stdlib.js" ],
"description": "Skulpt is a Javascript implementation of the Python programming language",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion skulpt.js
Original file line number Diff line number Diff line change
Expand Up @@ -5011,7 +5011,7 @@ Sk.configure = function (options) {
Sk.setTimeout = options["setTimeout"];
if (Sk.setTimeout === undefined) {
if (typeof setTimeout === "function") {
Sk.setTimeout = setTimeout;
Sk.setTimeout = function(func, delay) { setTimeout(func, delay); };
} else {
Sk.setTimeout = function(func, delay) { func(); };
}
Expand Down
6 changes: 3 additions & 3 deletions skulpt.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6d8acf9

Please sign in to comment.