I'm having a bit of a struggle with something that should be quite easy to do, yet i'm failing at it.
I'm trying to implement the Jquery Galleria Flickr plugin into this website: http://www.mathijsdelva.be/yury.
This is the code i have:
<script src="js/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="js/galleria.js" type="text/javascript"></script>
<script src="js/galleria.flickr.js" type="text/javascript"></script>
<script src="js/classic/galleria.classic.js"></script>
<script type="text/javascript">
var api_key = '22b0615cb0499c7a9f67e166c74b8d6d' // you must have a flickr API key
var flickr = new Galleria.Flickr(api_key); // initialize the plugin
flickr.getSet('72157623495372507', {
size: 'big',
description: false,
max: 100,
sort: 'date-posted-desc'
}, function(data) {
$('#flickrfeed').galleria({
data_source: data
});
});
</script>
I'm doing this just as the github galleria readme is telling me but it's just not working.
Can anyone please help me? it's probably something really stupid/small!
Mathijs
I've got problems getting it to work also. What version of galleria.js and galleria.flick.js? There might be a miss match, I'm trying v1.2 for both without luck. Also from the documentation for v1.2 I've been following it looks more like this for the theme load;
From your code it looks like you are using a previous version of galleria, and i think that did not support getSet(), but I could be wrong.