Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- this._printGallery = function(photos) {
- var element = this.element.find('.gallery-container');
- $.each(photos, function(key, photo) {
- var img = $('<img>', { 'class': 'thumb img-thumbnail flickr-img-responsive', src: photo.thumbnail });
- element.append($('<div></div>', { 'class': ' col-md-3 col-sm-4 col-center weblizar-flickr-div' })
- .append($('<a></a>', { 'class': '', title: photo.title, href: photo.href, 'data-gallery': '' }).hide()
- .append(img))
- .append($('<p></p>', { 'class': ''}).show()
- .append(photo.title)));
- });
Add Comment
Please, Sign In to add comment