ability to clear browser location on individual posts

Dieser Commit ist enthalten in:
Mike Macgirvin 2010-10-20 00:33:17 -07:00
Ursprung b91e9545f7
Commit 68464b5d93
5 geänderte Dateien mit 16 neuen und 2 gelöschten Zeilen

BIN
images/noglobe.gif Normale Datei

Binäre Datei nicht angezeigt.

Nachher

Breite:  |  Höhe:  |  Größe: 606 B

Datei anzeigen

@ -118,6 +118,11 @@ tinyMCE.init({
}
}
function jotClearLocation() {
$('#jot-coord').val('');
$('#profile-nolocation-wrapper').hide();
}
$geotag
</script>

Datei anzeigen

@ -27,7 +27,10 @@
<img id="profile-video" src="images/youtube_icon.gif" alt="Insert YouTube video" title="Insert YouTube video" onclick="jotGetVideo();" />
</div>
<div id="profile-location-wrapper" style="display: $visitor;" >
<img id="profile-location" src="images/globe.gif" alt="Set your location" title="Set your lcoation" onclick="jotGetLocation();" />
<img id="profile-location" src="images/globe.gif" alt="Set your location" title="Set your location" onclick="jotGetLocation();" />
</div>
<div id="profile-nolocation-wrapper" style="display: none;" >
<img id="profile-nolocation" src="images/noglobe.gif" alt="Clear Browser Location" title="Clear Browser Location" onclick="jotClearLocation();" />
</div>
<div id="profile-rotator-wrapper" style="display: $visitor;" >
<img id="profile-rotator" src="images/rotator.gif" alt="Please wait" title="Please wait" style="display: none;" />

Datei anzeigen

@ -2,6 +2,7 @@
if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
$('#jot-coord').val(position.coords.latitude + ',' + position.coords.longitude);
$('#profile-nolocation-wrapper').show();
});
}

Datei anzeigen

@ -79,7 +79,8 @@ blockquote:before {
}
#jot-perms-icon,
#profile-location,
#profile-location,
#profile-nolocation,
#profile-video,
#profile-link,
#wall-image-upload,
@ -943,6 +944,10 @@ input#dfrn-url {
float: left;
margin-left: 20px;
}
#profile-nolocation-wrapper {
float: left;
margin-left: 20px;
}
#profile-jot-perms {
float: left;