Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Dec 31, 2017
1 parent 7559d92 commit f92202a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* set all elements to use border-box sizing. Yay! */
html {
box-sizing: border-box;
height: 100vh;
height: 100%;
}
*, *:before, *:after {
box-sizing: inherit;
Expand All @@ -12,17 +12,17 @@ html {
}

body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
margin: 0;
font-family: Helvetica, Arial, sans-serif;
overflow: hidden;
}

/* class to make something full size */
.hft-fullsize {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
}
.hft-top-left {
position: absolute;
Expand All @@ -31,8 +31,8 @@ body {
}
/* class to make a column based flexbox with everything centered */
.hft-fullcenter {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;

display: -webkit-box;
display: -webkit-flex;
Expand Down Expand Up @@ -61,13 +61,13 @@ body {
*/
#hft-everything {
position: relative;
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
}
#hft-content {
position: relative;
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
}
/* left header area */
#hft-nameentry {
Expand All @@ -76,7 +76,7 @@ body {
left: 0px;
top: 0xp;
z-index: 5000;
width: 100vw;
width: 100%;
background: -webkit-linear-gradient(top, #f2f6f8 0%,#d8e1e7 88%,#b5c6d0 91%,#e0eff9 100%);
background: linear-gradient(to bottom, #f2f6f8 0%,#d8e1e7 88%,#b5c6d0 91%,#e0eff9 100%);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3486,6 +3486,7 @@
};

var onPointerDown = function(e) {
e.preventDefault();
var padId = getClosestPad(e);
checkStart(padId, e);
};
Expand Down Expand Up @@ -3631,6 +3632,7 @@
//};

var handleButtonDown = function(e, buttonInfo) {
e.preventDefault();
addPointerId(buttonInfo, e.pointerId, e.timeStamp);
};

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hft-unity3d",
"version": "2.0.0",
"version": "2.1.5",
"description": "builder for happyfuntimes unity javascript runtime support",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f92202a

Please sign in to comment.