|
@@ -12,19 +12,19 @@ var header = $('header'),
|
|
$(document).ready(function(){
|
|
$(document).ready(function(){
|
|
|
|
|
|
/* Event Name */
|
|
/* Event Name */
|
|
- if ('ontouchend' in document.documentElement) event_name = 'touchend';
|
|
|
|
- else event_name = 'click';
|
|
|
|
|
|
+ if ('ontouchend' in document.documentElement) eventName = 'touchend';
|
|
|
|
+ else eventName = 'click';
|
|
|
|
|
|
/* Window */
|
|
/* Window */
|
|
$(window).keydown(key);
|
|
$(window).keydown(key);
|
|
|
|
|
|
/* Infobox */
|
|
/* Infobox */
|
|
- $(document) .on(event_name, '#infobox .header a', hideInfobox);
|
|
|
|
- $(document) .on(event_name, '#infobox_overlay', hideInfobox);
|
|
|
|
- $('#button_info') .on(event_name, showInfobox);
|
|
|
|
|
|
+ infobox.find('.header .close').on(eventName, hideInfobox);
|
|
|
|
+ $(document) .on(eventName, '#infobox_overlay', hideInfobox);
|
|
|
|
+ $('#button_info') .on(eventName, showInfobox);
|
|
|
|
|
|
/* Direct Link */
|
|
/* Direct Link */
|
|
- $('#button_direct').on(event_name, function() {
|
|
|
|
|
|
+ $('#button_direct').on(eventName, function() {
|
|
|
|
|
|
var link = $('#imageview #image').css('background-image').replace(/"/g,'').replace(/url\(|\)$/ig, '');
|
|
var link = $('#imageview #image').css('background-image').replace(/"/g,'').replace(/url\(|\)$/ig, '');
|
|
window.open(link, '_newtab');
|
|
window.open(link, '_newtab');
|
|
@@ -123,7 +123,7 @@ loadPhotoInfo = function(photoID) {
|
|
.addClass('fadeIn')
|
|
.addClass('fadeIn')
|
|
.show();
|
|
.show();
|
|
|
|
|
|
- infobox.html(build.infoboxPhoto(data, true)).show();
|
|
|
|
|
|
+ infobox.find('.wrapper').html(build.infoboxPhoto(data, true));
|
|
|
|
|
|
}, error: ajaxError });
|
|
}, error: ajaxError });
|
|
|
|
|