PluginProbe
Taskbuilder – Project Management & Task Management Tool With Kanban Board / 6.0.6
Taskbuilder – Project Management & Task Management Tool With Kanban Board v6.0.6
6.0.6 6.0.5 6.0.2 6.0.3 6.0.4 6.0.1 6.0.0 5.0.8 5.0.9 4.0.9 5.0.0 5.0.1 5.0.2 5.0.3 5.0.4 5.0.5 5.0.6 5.0.7 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 All 58 releases
← All changes | asset/js/public.js +44 -44 5.0.26.0.6 View file →
@@ -1,45 +1,45 @@
1 -function wppm_sign_in(){
2 - jQuery('#wppm_project_container').show();
3 - jQuery('#wppm_project_container').html(wppm_admin.loading_html);
4 - var data = {
5 - action: 'wppm_sign_in'
6 - }
7 - jQuery.post(wppm_admin.ajax_url, data, function(response_str) {
8 - jQuery('#wppm_project_container').html(response_str);
9 - })
10 -}
11 -
12 -function wppm_task_sign_in(){
13 - jQuery('#wppm_task_container').show();
14 - jQuery('#wppm_task_container').html(wppm_admin.loading_html);
15 - var data = {
16 - action: 'wppm_sign_in'
17 - }
18 - jQuery.post(wppm_admin.ajax_url, data, function(response_str) {
19 - jQuery('#wppm_task_container').html(response_str);
20 - })
21 -}
22 -
23 -function wppm_sign_in_frm(){
24 - var dataform = new FormData(jQuery('#frm_wppm_sign_in')[0]);
25 - jQuery.ajax({
26 - url: wppm_admin.ajax_url,
27 - type: 'POST',
28 - data: dataform,
29 - processData: false,
30 - contentType: false
31 - })
32 - .done(function (response) {
33 - if (response.error == '1') {
34 - jQuery('#wppm_message_login').html(response.message);
35 - jQuery('#wppm_message_login').attr('class','bg-danger').slideDown('fast',function(){});
36 - jQuery('#frm_wppm_sign_in').find('input,button').attr('disabled',false);
37 - jQuery('#frm_wppm_sign_in').find('#inputPassword').val('');
38 - setTimeout(function(){ jQuery('#wppm_message_login').slideUp('fast',function(){}); }, 3000);
39 - } else {
40 - jQuery('#wppm_message_login').html(response.message);
41 - jQuery('#wppm_message_login').attr('class','bg-success').slideDown('fast',function(){});
42 - location.reload();
43 - }
44 - });
1 +function wppm_sign_in(){
2 + jQuery('#wppm_project_container').show();
3 + jQuery('#wppm_project_container').html(wppm_admin.loading_html);
4 + var data = {
5 + action: 'wppm_sign_in'
6 + }
7 + jQuery.post(wppm_admin.ajax_url, data, function(response_str) {
8 + jQuery('#wppm_project_container').html(response_str);
9 + })
10 +}
11 +
12 +function wppm_task_sign_in(){
13 + jQuery('#wppm_task_container').show();
14 + jQuery('#wppm_task_container').html(wppm_admin.loading_html);
15 + var data = {
16 + action: 'wppm_sign_in'
17 + }
18 + jQuery.post(wppm_admin.ajax_url, data, function(response_str) {
19 + jQuery('#wppm_task_container').html(response_str);
20 + })
21 +}
22 +
23 +function wppm_sign_in_frm(){
24 + var dataform = new FormData(jQuery('#frm_wppm_sign_in')[0]);
25 + jQuery.ajax({
26 + url: wppm_admin.ajax_url,
27 + type: 'POST',
28 + data: dataform,
29 + processData: false,
30 + contentType: false
31 + })
32 + .done(function (response) {
33 + if (response.error == '1') {
34 + jQuery('#wppm_message_login').html(response.message);
35 + jQuery('#wppm_message_login').attr('class','bg-danger').slideDown('fast',function(){});
36 + jQuery('#frm_wppm_sign_in').find('input,button').attr('disabled',false);
37 + jQuery('#frm_wppm_sign_in').find('#inputPassword').val('');
38 + setTimeout(function(){ jQuery('#wppm_message_login').slideUp('fast',function(){}); }, 3000);
39 + } else {
40 + jQuery('#wppm_message_login').html(response.message);
41 + jQuery('#wppm_message_login').attr('class','bg-success').slideDown('fast',function(){});
42 + location.reload();
43 + }
44 + });
45 45 }