diaspora/public/javascripts/mobile.js
2010-11-26 12:16:10 -08:00

19 lines
455 B
JavaScript

/* Copyright (c) 2010, Diaspora Inc. This file is
* licensed under the Affero General Public License version 3 or later. See
* the COPYRIGHT file.
*/
var Mobile = {
initialize : function(){
$('#aspect_picker').change(Mobile.changeAspect);
},
changeAspect : function() {
Mobile.windowLocation('/aspects/' + $('#aspect_picker option:selected').val());
},
windowLocation : function(url) {
window.location = url;
},
};