Using object value instead of inline string

This commit is contained in:
Sarven Capadisli 2010-01-04 09:14:14 +00:00
parent 50af9c5c40
commit 9f9dcd2bf5

View File

@ -447,7 +447,7 @@ var SN = { // StatusNet
var NLE = $('#notice_data-location_wrap'); var NLE = $('#notice_data-location_wrap');
var geocodeURL = NLE.attr('title'); var geocodeURL = NLE.attr('title');
$('label[for=notice_data-geo]').attr('title', NLE.text()); $('label[for='+SN.C.S.NoticeDataGeo+']').attr('title', NLE.text());
if (navigator.geolocation) { if (navigator.geolocation) {
NDG.change(function() { NDG.change(function() {
@ -475,14 +475,14 @@ var SN = { // StatusNet
if ($('#'+SN.C.S.NoticeDataGeo).attr('checked') === true) { if ($('#'+SN.C.S.NoticeDataGeo).attr('checked') === true) {
NLN.addClass('processing'); NLN.addClass('processing');
$('label[for=notice_data-geo]').addClass('checked'); $('label[for='+SN.C.S.NoticeDataGeo+']').addClass('checked');
NDGS.append('<button class="minimize">&#95;</button> <button class="close">&#215;</button>'); NDGS.append('<button class="minimize">&#95;</button> <button class="close">&#215;</button>');
$('#'+SN.C.S.NoticeDataGeoSelected+' button.close').click(function(){ $('#'+SN.C.S.NoticeDataGeoSelected+' button.close').click(function(){
$('#'+SN.C.S.NoticeDataGeoSelected).remove(); $('#'+SN.C.S.NoticeDataGeoSelected).remove();
$('#'+SN.C.S.NoticeDataGeo).attr('checked', false); $('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
$('label[for=notice_data-geo]').removeClass('checked'); $('label[for='+SN.C.S.NoticeDataGeo+']').removeClass('checked');
return false; return false;
}); });
@ -533,7 +533,7 @@ var SN = { // StatusNet
}); });
} }
else { else {
$('label[for=notice_data-geo]').removeClass('checked'); $('label[for='+SN.C.S.NoticeDataGeo+']').removeClass('checked');
NDGS.hide(); NDGS.hide();
$('#'+SN.C.S.NoticeLat).val(''); $('#'+SN.C.S.NoticeLat).val('');
$('#'+SN.C.S.NoticeLon).val(''); $('#'+SN.C.S.NoticeLon).val('');