oxspeed/js/speedtrans.js

29 lines
542 B
JavaScript
Raw Normal View History

2011-12-24 10:18:48 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
'use strict';
(function() {
$(function() {
Ox.load({
UI: {
theme: 'modern' //FIXME: get theme through localStorage
}
}, loadSpeedtrans);
});
function loadSpeedtrans(browserSupported) {
if (!browserSupported) { alert("your browser is not supported"); return; }
initSpeedtrans(); //FIXME: actually call as Ox.App callback
}
function initSpeedtrans(data) {
}
})();