Skip to content

Commit 88ab33d

Browse files
committedJun 12, 2019
Fixing the room name bug. Adding docs
1 parent b3f4f17 commit 88ab33d

File tree

173 files changed

+2813940
-52
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+2813940
-52
lines changed
 

‎.esdoc.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"source": "./src/scripts/",
3+
"destination": "./docs",
4+
"plugins": [{"name": "esdoc-standard-plugin"}]
5+
}

‎build/js/app.js

+4
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ var mainControls = function(blueprint3d)
9898
function loadDesign()
9999
{
100100
files = $("#loadFile").get(0).files;
101+
if(files.length == 0)
102+
{
103+
files = $("#loadFile2d").get(0).files;
104+
}
101105
var reader = new FileReader();
102106
reader.onload = function(event) {
103107
var data = event.target.result;

0 commit comments

Comments
 (0)