There is a syntax error in the code:
var StentGallery = {
gallery: null,
init : function(){
this.gallery = jQuery('#gallery-list-ui');
this.resizeImage();
}
},
resizeImage: function(){
...
To fix this, just remove this bracket:
var StentGallery = {
gallery: null,
init : function(){
this.gallery = jQuery('#gallery-list-ui');
this.resizeImage();
},
resizeImage: function(){
...
source
share