don't remove these methods

This commit is contained in:
maxwell 2011-01-29 18:58:34 -08:00
parent 348ae0b61d
commit 6dffdd8152

View file

@ -7,6 +7,15 @@ var Mobile = {
initialize: function() { initialize: function() {
$("abbr.timeago").timeago(); $("abbr.timeago").timeago();
$('#main_stream + .pagination').hide(); $('#main_stream + .pagination').hide();
$('#aspect_picker').change(Mobile.changeAspect);
}, },
changeAspect: function() {
Mobile.windowLocation('/aspects/' + $('#aspect_picker option:selected').val());
},
windowLocation: function(url) {
window.location = url;
}
}; };