-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Completed main app page, changed app dimensions.
- Loading branch information
Alex Garcia
committed
Nov 9, 2018
1 parent
bcf8dd0
commit 376a245
Showing
4 changed files
with
70 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,7 @@ | ||
// function hde() {document.getElementById("sm").style.color = "#fbd";} | ||
// function out() {document.getElementById("sm").innerHTML = "Hover over shapes to see what they mean.";document.getElementById("sm").style.color = "#9ea";} | ||
// function mOver() {document.getElementById("sm").innerHTML = "<b>MERITS:</b><br />User valuations of how well the focus meets stated needs...";hde();} | ||
// function aOver() {document.getElementById("sm").innerHTML = "<b>ACTIONS:</b><br />Proposed and current activities prior to completion or rejection, to-dos, tasks...";hde();} | ||
// function pOver() {document.getElementById("sm").innerHTML = "<b>PEOPLE:</b><br />Individuals and their chosen groups, identities, communities, companies...";hde();} | ||
// function fOver() {document.getElementById("sm").innerHTML = "<b>FACTS:</b><br />Dates, places, things, documents, experiences, accomplishments, completed or rejected actions...";hde();} | ||
// function oOver() {document.getElementById("sm").innerHTML = "<b>THOUGHTS:</b><br />Concepts, beliefs, opinions, analyses, ideas, concerns...";hde();} | ||
// function eOver() {document.getElementById("sm").innerHTML = "<b>FEELINGS:</b><br />Sentiments, emotions, states of mind...";hde();} | ||
// function nOver() {document.getElementById("sm").innerHTML = "<b>NEEDS:</b><br />Physical, emotional, social, or spiritual necessities for self, group & others...";hde();} | ||
// function tOver() {document.getElementById("sm").innerHTML = "<b>TOPICS:</b><br />Projects, issues, subjects, ideas, matters, protocols, transactions...";hde();} | ||
|
||
(function($){ | ||
$('.shape').hover(function(e){ | ||
console.log(e); | ||
$("#shape-description").html(e.target.dataset.message).css("color", "#fbd"); | ||
}, function(e){ | ||
console.log(e); | ||
$("#shape-description").html("<h4>Hover over shapes to see what they mean.</h4>").css("color", "#9ea"); | ||
}); | ||
})(jQuery); |
Oops, something went wrong.