forked from CodeCabin/wp-google-maps
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload.js
46 lines (36 loc) · 1.42 KB
/
upload.js
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
46
jQuery(function($) {
var clicked_on_imgbtn = false;
var clicked_on_markerbtn = false;
var clicked_on_custommarkerbtn = false;
jQuery('#upload_image_button').click(function() {
formfield = jQuery('#wpgmza_add_pic').attr('name');
clicked_on_imgbtn = true;
clicked_on_markerbtn = false;
clicked_on_custommarkerbtn = false;
tb_show('', 'media-upload.php?type=image&TB_iframe=true');
return false;
});
jQuery('#upload_default_marker_btn').click(function() {
formfield = jQuery('#upload_default_marker').attr('name');
clicked_on_imgbtn = false;
clicked_on_markerbtn = true;
clicked_on_custommarkerbtn = false;
tb_show('', 'media-upload.php?type=image&TB_iframe=true');
return false;
});
jQuery('#upload_custom_marker_button').click(function() {
formfield = jQuery('#wpgmza_add_custom_marker').attr('name');
clicked_on_imgbtn = false;
clicked_on_markerbtn = false;
clicked_on_custommarkerbtn = true;
tb_show('', 'media-upload.php?type=image&TB_iframe=true');
return false;
});
window.send_to_editor = function(html) {
imgurl = jQuery('img',html).attr('src');
if (clicked_on_imgbtn) { jQuery('#wpgmza_add_pic').val(imgurl); }
if (clicked_on_markerbtn) { jQuery('#upload_default_marker').val(imgurl); jQuery("#wpgmza_mm").html("<img src=\""+imgurl+"\" />"); }
if (clicked_on_custommarkerbtn) { jQuery('#wpgmza_add_custom_marker').val(imgurl); jQuery("#wpgmza_cmm").html("<img src=\""+imgurl+"\" />"); }
tb_remove();
}
});