From ad61ffdbaf004dd3b33adf8f2780500069fa097b Mon Sep 17 00:00:00 2001 From: Ugnich Anton Date: Sat, 28 Jan 2012 14:45:42 +0700 Subject: JS, CSS, PNG --- web/post3.js | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 web/post3.js (limited to 'web/post3.js') diff --git a/web/post3.js b/web/post3.js new file mode 100644 index 00000000..31b3f8f2 --- /dev/null +++ b/web/post3.js @@ -0,0 +1,55 @@ +if(window!=window.top) { + window.top.location.href='http://juick.com/post'; +} + +function clearLocation() { + document.getElementById("location").innerHTML='Choose'; + document.getElementById("locationclear").style.display="none"; + document.getElementById("geomap").style.display="none"; + document.forms["postmsg"].place_id.value=0; +} + +function addLocation() { + document.getElementById("location").innerHTML="?"; + document.getElementById("locationclear").style.display="inline"; + document.getElementById("geomap").style.display="block"; + if(!map) { + mapInit('show=places',1,1); + GEvent.addListener(map,"click", function(overlay) { + if(overlay instanceof GMarker) { + document.getElementById("location").innerHTML=''+overlay.getTitle()+''; + document.forms["postmsg"].place_id.value=overlay.param; + } + }); + } +} + +function addTag(tag) { + document.forms["postmsg"].body.value='*'+tag+' '+document.forms["postmsg"].body.value; + return false; +} + +function webcamShow() { + swfobject.embedSWF('http://juick.com/_webcam.swf','webcam','320','280','9.0.115','false',null,null,null); +} + +function webcamImage(hash) { + document.getElementById("webcamwrap").innerHTML='
'; + document.getElementById("attachmentfile").style.display="none"; + document.getElementById("attachmentwebcam").style.display="inline"; + document.forms["postmsg"].webcam.value=hash; +} + +function clearAttachment() { + document.getElementById("attachmentfile").style.display="inline"; + document.getElementById("attachmentwebcam").style.display="none"; + document.forms["postmsg"].webcam.value=""; +} + +$(document).ready(function() { + clearLocation(); + clearAttachment(); + $("textarea")[0].focus(); +}); + +$(window).unload(GUnload); -- cgit v1.2.3