Active
Project:
Galleria
Version:
7.x-1.0-beta3
Component:
Code
Priority:
Major
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
16 Aug 2012 at 00:55 UTC
Updated:
16 Aug 2012 at 00:55 UTC
Hi to all!
Can you explain me how to make play and toogle to fullscreen buttons? For original plugin I have code -
<a id="play" href="#">Play</a>
<script>
Galleria.run('#galleria', {
extend: function() {
var gallery = this; // "this" is the gallery instance
$('#play').click(function() {
gallery.play(); // call the play method
});
}
});
</script>and it works..
but where i can put this in D7 module to make it work in D7??