Added a placeholder me for iPad which inspects the object once the page loads.

This commit is contained in:
Scott Erickson 2014-12-01 10:45:19 -08:00
parent 43ac0e8572
commit 57b154810b

View file

@ -34,9 +34,15 @@
<script src="/javascripts/aether.js" defer></script>
<script src="/javascripts/app.js" defer></script> <!-- it's all Backbone! -->
<script>
// Placeholder for iPad, which inspects the user object at the bottom of an injected page.
window.userObject = "userObjectTag";
window.me = {
get: function(attribute) { return window.userObject[attribute]; }
}
onLoad = function() {
FastClick.attach(document.body);
window.userObject = "userObjectTag";
require('core/initialize');
}
</script>