blob: 43fd5f25206a1c478f456a3519df244a0ae8a3da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
function launch_iframe(input_target){
$.fancybox.open({
href : '/im/colors/index.html',
width : 1100, // set the width
height : 710,
fitToView : true,
autoDimensions:false,
autoSize:false,
type : 'iframe',
closeBtn : false,
padding : 5,
beforeShow : function(){
$('.fancybox-iframe').contents().find('#submitvalue').click(function(){
$('.fancybox-iframe').contents().find('form').submit();
$.fancybox.close();
});
},
beforeClose : function(){
x = $('.fancybox-iframe').contents().find('#namespace').val();
},
afterClose: function(){
$(input_target).val(x);
}
});
}
$(document).ready(function(){
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
return;
}
var element_list = [".img-white", ".img-black", ".img-subtract"]
element_list.forEach(
function(l){
console.log("a"+l)
$("a"+l).click(function(event){
event.preventDefault();
launch_iframe("input"+l)
});
}
)
})
|