summaryrefslogtreecommitdiff
path: root/static/js/home.js
diff options
context:
space:
mode:
authorsostler <sbostler@gmail.com>2010-02-09 21:03:52 -0500
committersostler <sbostler@gmail.com>2010-02-09 21:03:52 -0500
commit079e2e9c1d3d5fb0f19515bfb566864565c43213 (patch)
treeeac7b3fc9a4eecdd4006177eb428c5a7e32db63c /static/js/home.js
parent8bb0ddd75b6b2160198fa362a2b8f67d7e029a0a (diff)
parent070676f3803161a9bce3a37697dd5d0255630819 (diff)
Merge branch 'master' of ssh://sostler@dump.fm/pichat/repo
Diffstat (limited to 'static/js/home.js')
-rwxr-xr-xstatic/js/home.js73
1 files changed, 39 insertions, 34 deletions
diff --git a/static/js/home.js b/static/js/home.js
index 441a992..58fc384 100755
--- a/static/js/home.js
+++ b/static/js/home.js
@@ -6,15 +6,15 @@ function ifEnter(fn) {
function initLoginForm() {
- var nick = "#nickInput", nickFiller = "username"
- var pass = "#passwordInput", passLabel = "#passwordInputLabel", passFiller = "password"
- var submit = "#signin-submit"
-
- // username input logic:
- // set filler text for the login form only if empty
- if ($(nick).val() == "") $(nick).val(nickFiller);
-
- // erase the form text when clicked only if it is filler text, otherwise select it
+ var nick = "#nickInput", nickFiller = "username"
+ var pass = "#passwordInput", passLabel = "#passwordInputLabel", passFiller = "password"
+ var submit = "#signin-submit"
+
+ // username input logic:
+ // set filler text for the login form only if empty
+ if ($(nick).val() == "") $(nick).val(nickFiller);
+
+ // erase the form text when clicked only if it is filler text, otherwise select it
$(nick).focus(function(){
if($(nick).val() == nickFiller) $(nick).val("")
else $(nick).select()
@@ -38,8 +38,8 @@ function initLoginForm() {
$(pass).addClass("invisible")
$(passLabel).removeClass("invisible")
}
-
- // only show password label if input is empty
+
+ // only show password label if input is empty
if ($(pass).val() == "") hidePassShowLabel()
$(passLabel).click(showPassHideLabel)
@@ -48,8 +48,8 @@ function initLoginForm() {
$(pass).blur(function(){
if($(pass).val() == "") hidePassShowLabel()
})
-
- $(nick).keypress(ifEnter(login));
+
+ $(nick).keypress(ifEnter(login));
$(pass).keypress(ifEnter(login));
$(submit).click(login);
@@ -80,10 +80,12 @@ function initExpandableLoginForm() {
}
function initBigHand(id){
- var cursor = "#cursor-big"
+ var cursorId = "#cursor-big"
+ var cursor = $(cursorId)[0]
- if (!$(cursor).length) // add cursor image to page if it doesn't exist already...
- $('<img src="/static/img/cursors/osx.hand.gif" class="invisible no-cursor" id="cursor-big">').appendTo('body')
+ // jquery's reported element sizes are not exactly the same as the browser's 'mouseover' target sizes
+ // so we'll allow a few pixels extra
+ var fudgeFactor = 2
$(id).addClass("no-cursor")
@@ -97,6 +99,7 @@ function initBigHand(id){
// find image co-ords
// bind a global mousemove func
// bind cursor click event
+ // unbind mouseover
// mousemove func:
// move image to mouse co-ords
// if mouse co-ords are outside the image co-ords:
@@ -105,17 +108,17 @@ function initBigHand(id){
// unbind cursor click event
var mousemove = function(e){
- $(cursor).css({
- "top": e.pageY + "px",
- "left": e.pageX - 32 + "px" // 32: (4 pixels * 8 pixels per big pixel) to line up pointy finger with cursor
- })
- $(id).unbind('mouseover', imageMouseOver)
- if (e.pageY < initBigHand.coords.top ||
- e.pageY > initBigHand.coords.bottom ||
- e.pageX < initBigHand.coords.left ||
- e.pageX > initBigHand.coords.right) {
- $(cursor).addClass('invisible')
- $(cursor).unbind('click', cursorClick)
+ var y = e.pageY, x = e.pageX, coords = initBigHand.coords
+
+ cursor.style.top = y + "px"
+ cursor.style.left = x - 32 + "px" // 32: (4 pixels * 8 pixels per big pixel) to line up pointy finger with cursor
+ if (y < coords.top ||
+ y > coords.bottom ||
+ x < coords.left ||
+ x > coords.right) {
+ $(cursorId).addClass('invisible')
+ $(cursorId).css({"top": 0, "left": 0 })
+ $(cursorId).unbind('click', cursorClick)
$('body').unbind('mousemove', mousemove)
$(id).mouseover(imageMouseOver)
}
@@ -124,15 +127,17 @@ function initBigHand(id){
var cursorClick = function(){ $(id).click() }
var imageMouseOver = function(){
+ //console.log("moused over...")
initBigHand.coords = {
- "left": $(id).offset().left,
- "top": $(id).offset().top,
- "right": $(id).offset().left + $(id).width(),
- "bottom": $(id).offset().top + $(id).height()
+ "left": $(id).offset().left - fudgeFactor,
+ "top": $(id).offset().top - fudgeFactor,
+ "right": $(id).offset().left + $(id).width() + fudgeFactor,
+ "bottom": $(id).offset().top + $(id).height() + fudgeFactor
}
$('body').mousemove(mousemove)
- $(cursor).click(cursorClick)
- $(cursor).removeClass('invisible')
+ $(cursorId).click(cursorClick)
+ $(cursorId).removeClass('invisible')
+ $(id).unbind('mouseover', imageMouseOver)
}
$(id).mouseover(imageMouseOver)
@@ -163,4 +168,4 @@ function login() {
success: onSuccess,
error: onError
});
-}; \ No newline at end of file
+};