Damien,
Please check your code. There is a warning there:
|
Quellcode
|
1
|
WARNING: Unknown action: else
|
The krpano does not have "else" statement.
Also in the index.html
|
Quellcode
|
1
2
3
4
5
6
7
|
<script src="../galleria.classic.min.js"></script>
<script>
(function(){
G.init();
}());
</script>
<script>
|
The G. is undefined.
In console you can read:
/favicon.ico:1 Failed to load resource: the server responded with a status of 500 (Internal Server Error)
Apparently you are mixing the http:// and https:// protocols on the server. (The current browsers do not allow it).
Try cleaning it.
Pavel