Browse
For agents
About
Easy Bootstrap Shortcode
/
4.5
Easy Bootstrap Shortcode
v4.5
Switch version
trunk
2.4.0
2.5
3.4
3.5
3.6
3.7
4.0.0
4.4
4.5
4.5.4
5.0.0
5.0.1
5.0.2
Overview
Code
easy-bootstrap-shortcodes
/
shortcode
/
lead
/
lead_plugin.js
lead_plugin.js
in Easy Bootstrap Shortcode 4.5, at shortcode/lead/lead_plugin.js
23 lines
571 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
var
lead
=
{
2
title
:
"
Lead Shortcode
"
,
3
id
:
'
oscitas-form-lead
'
,
4
pluginName
:
'
lead
'
,
5
showprobtn
:
false
6
}
;
7
(
function
(
)
{
8
_create_tinyMCE_options
(
lead
)
;
9
}
)
(
)
;
10
11
function
ebs_return_html_lead
(
pluginObj
)
{
12
var
form
=
jQuery
(
'
<div id="
'
+
pluginObj
.
id
+
'
" class="oscitas-container" title="
'
+
pluginObj
.
title
+
'
"><table id="oscitas-table" class="form-table">
\
13
<tr>
\
14
<th class="aligncenter"><img src="
'
+
ebs_url
+
'
shortcode/lead/screenshot.jpg" /></th>
\
15
</tr>
\
16
</table>
\
17
</div>
'
)
;
18
return
form
;
19
}
20
21
22
function
create_oscitas_lead
(
pluginObj
)
{
23
}