Skip to content

Commit

Permalink
WOrking updates
Browse files Browse the repository at this point in the history
  • Loading branch information
stephensm authored and stephensm committed Aug 13, 2013
2 parents b9e3865 + aebe41a commit 04735c2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions perfectSteak.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ input[type="radio"].toggle-right + label {
height:50px;
}

#d3{
position: relative;
width: 80%;
}

.btn{
font-size:12pt;
padding:2px;
Expand Down
10 changes: 7 additions & 3 deletions perfectSteak.js
Original file line number Diff line number Diff line change
Expand Up @@ -478,8 +478,8 @@ var perfectSteak = function (div) {
dropdown3.append($('<option>' + key + '</option>'));
}

dropdownDiv.change(function () {
dropdownDiv.change(function () {

var e1 = document.getElementById("d1");
var name1 = e1.options[e1.selectedIndex].text;
var e2 = document.getElementById("d2");
Expand All @@ -491,6 +491,8 @@ var perfectSteak = function (div) {
drawFinished(info[0], info[1], info[2], info[3], 0,info[4],$('.mytog2:checked').attr('id'));
var inf = model.currentInfo['recipe'][name2];
drawFinished(inf[0], inf[1], inf[2], inf[3], 1,inf[4],$('.mytog2:checked').attr('id'));}


);

dropdown3.change(function () {
Expand Down Expand Up @@ -540,7 +542,7 @@ var perfectSteak = function (div) {

addDropdown();
}

var toF = function (C) {
return (C * (9 / 5) + 32 + "&#176;F");
}
Expand Down Expand Up @@ -779,10 +781,12 @@ var perfectSteak = function (div) {
}



var loadRecipe=function(recipe){

}


var graph = function (isFirst, falseColor) {

d3.selectAll(".mysteak").remove();
Expand Down

0 comments on commit 04735c2

Please sign in to comment.