PluginProbe
Team Showcase / 1.3
Team Showcase v1.3
trunk 1.0 1.1 1.11 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.2 1.20 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.22.0 1.22.1 1.22.10 1.22.12 1.22.13 1.22.14 All 49 releases
team / js / team-scripts.js

team-scripts.js in Team Showcase 1.3, at js/team-scripts.js

44 lines 842 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 jQuery(document).ready(function($)
3 {
4 $(document).on('click', '.team_content_source', function()
5 {
6 var source = $(this).val();
7 var source_id = $(this).attr("id");
8
9 $(".content-source-box.active").removeClass("active");
10 $(".content-source-box."+source_id).addClass("active");
11
12 })
13
14
15 $(document).on('click', '.new_team_member_social_field', function()
16 {
17 var user_profile_social = prompt("Please add new social site","");
18
19 if(user_profile_social=='' || user_profile_social==null)
20 {
21
22 }
23 else
24 {
25 $(".team_member_social_field").append('<input type="text" name="team_member_social_field['+user_profile_social+']" value="'+user_profile_social+'" /><br />');
26 }
27
28
29
30
31
32 })
33
34
35
36
37
38
39
40
41
42
43 });
44