fix embed

This commit is contained in:
j 2011-05-28 13:18:24 +02:00
parent 2cb5512099
commit 1f3d39524f
2 changed files with 6 additions and 8 deletions

View file

@ -4,19 +4,16 @@
<title>{{settings.SITENAME}}</title> <title>{{settings.SITENAME}}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="shortcut icon" type="image/png" href="/static/png/icon.16.png"/> <link rel="shortcut icon" type="image/png" href="/static/png/icon.16.png"/>
<link rel="stylesheet" type="text/css" href="/static/oxjs/build/css/ox.ui.css"/>
<script type='text/javascript'> <script type='text/javascript'>
if(typeof(console)=='undefined') { if(typeof(console)=='undefined') {
console = {}; console = {};
console.log = function() {}; console.log = function() {};
} }
</script> </script>
<script type="text/javascript" src="/static/js/jquery/jquery.js"></script> <script type="text/javascript" src="/static/oxjs/build/jquery/jquery.js"></script>
<script type="text/javascript" src="/static/js/jquery/jquery.tmpl.min.js"></script> <script type="text/javascript" src="/static/js/jquery/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="/static/js/jquery/jquery.videosupport.js"></script> <script type="text/javascript" src="/static/js/jquery/jquery.videosupport.js"></script>
<script type="text/javascript" src="/static/oxjs/build/js/ox.load.js"></script> <script type="text/javascript" src="/static/oxjs/build/Ox.js"></script>
<script type="text/javascript" src="/static/oxjs/build/js/ox.js"></script>
<script type="text/javascript" src="/static/oxjs/build/js/ox.ui.js"></script>
<script type="text/javascript" src="/static/js/pandora.embed.js"></script> <script type="text/javascript" src="/static/js/pandora.embed.js"></script>
</head> </head>
<body></body> <body></body>

View file

@ -1,7 +1,7 @@
/*** /***
Pandora embed Pandora embed
***/ ***/
Ox.load('UI', function() {
var pandora = new Ox.App({ var pandora = new Ox.App({
apiURL: '/api/', apiURL: '/api/',
}).launch(function(data) { }).launch(function(data) {
@ -56,6 +56,7 @@ var pandora = new Ox.App({
} }
}; };
var item = document.location.pathname.split('/')[1]; var item = document.location.pathname.split('/')[1];
ui.info= new app.info(item) ui.info = new app.info(item)
.appendTo(document.body); .appendTo(document.body);
});
}); });