Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OrigamiSimulator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Amanda Ghassaei
OrigamiSimulator
Commits
637f9ec2
Commit
637f9ec2
authored
Oct 02, 2017
by
amandaghassaei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mobile warning
parent
0241a918
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
0 deletions
+23
-0
css/main.css
css/main.css
+16
-0
index.html
index.html
+3
-0
js/controls.js
js/controls.js
+3
-0
js/dynamic/GPUMath.js
js/dynamic/GPUMath.js
+1
-0
No files found.
css/main.css
View file @
637f9ec2
...
...
@@ -515,4 +515,20 @@ a.seeMore.closed>.fui-triangle-down{
object
{
width
:
100%
;
margin-bottom
:
10px
;
}
#aboutCorner
{
display
:
none
;
position
:
absolute
;
z-index
:
6
;
top
:
0
;
right
:
0
;
background
:
rgba
(
40
,
40
,
40
,
0.7
);
width
:
30px
;
text-align
:
center
;
color
:
white
;
}
#noSupportModal
{
text-align
:
center
;
}
\ No newline at end of file
index.html
View file @
637f9ec2
...
...
@@ -4,6 +4,8 @@
<meta
charset=
"UTF-8"
>
<title>
Origami Simulator
</title>
<meta
name=
"viewport"
content=
"width=device-width"
>
<link
href=
"dependencies/bootstrap.min.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"dependencies/flat-ui.min.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"dependencies/jquery-ui.min.css"
/>
...
...
@@ -1856,5 +1858,6 @@
<div
id=
"recordStatus"
>
<a
href=
"#"
id=
"stopRecord"
class=
"btn btn-lg btn-danger"
>
Stop Record
<span></span></a>
</div>
<a
href=
"#"
id=
"aboutCorner"
>
?
</a>
</body>
</html>
\ No newline at end of file
js/controls.js
View file @
637f9ec2
...
...
@@ -71,6 +71,9 @@ function initControls(globals){
setLink
(
"
#about
"
,
function
(){
$
(
'
#aboutModal
'
).
modal
(
'
show
'
);
});
setLink
(
"
#aboutCorner
"
,
function
(){
$
(
'
#aboutModal
'
).
modal
(
'
show
'
);
});
setLink
(
"
#tips
"
,
function
(){
$
(
'
#tipsModal
'
).
modal
(
'
show
'
);
});
...
...
js/dynamic/GPUMath.js
View file @
637f9ec2
...
...
@@ -28,6 +28,7 @@ function initGPUMath(){
'
</div>
'
;
$
(
elm
).
appendTo
(
$
(
"
body
"
));
$
(
"
#noSupportModal
"
).
modal
(
"
show
"
);
$
(
"
#aboutCorner
"
).
show
();
console
.
warn
(
"
floating point textures are not supported on your system
"
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment