mailer project continued:
[mailer.git] / templates / de / html / js / js_admin_ajax.tpl
1 /**
2  * JavaScript for admin AJAX stuff
3  * --------------------------------------------------------------------
4  * $Revision::                                                        $
5  * $Date::                                                            $
6  * $Tag:: 0.2.1-FINAL                                                 $
7  * $Author::                                                          $
8  * --------------------------------------------------------------------
9  * Copyright (c) 2003 - 2009 by Roland Haeder
10  * Copyright (c) 2009 - 2012 by Mailer Developer Team
11  * For more information visit: http://mxchange.org
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
26  * MA  02110-1301  USA
27  */
28 // Make both windows drag'n'drop-able
29 $().ready(function() {
30         // Fade default content in
31         window.setTimeout("requestAjaxContent('admin', 'admin_content', '$content[admin_page]', false)", 250);
32
33         // Set default tab id
34         defaultTabId = '$content[admin_page]';
35
36         // Set 'save-changes' button id
37         saveChangesId = 'save_changes';
38
39         //-----------------------------------------
40         //            Tab navigation
41         //-----------------------------------------
42         $('a').each(function (i) {
43                 $(this).on('click', {index:i}, function (event) {
44                         // Do we have a valid index?
45                         if (indexTranslation[event.data.index] != null) {
46                                 // Prevent default action
47                                 event.preventDefault();
48
49                                 // Valid found, so initialize the POST request
50                                 requestAjaxContent('admin', 'admin_content', indexTranslation[event.data.index], false);
51                         } // END - if
52                 });
53         });
54
55         //-----------------------------------------
56         //             Close buttons
57         //-----------------------------------------
58         $('#admin_error_close').click(function () {
59                 // Close the window
60                 closeErrorWindow('admin');
61         });
62
63         $('#admin_warning_close').click(function () {
64                 // Close the window
65                 closeWarningWindow('admin');
66         });
67
68         //-----------------------------------------
69         //             Save changes
70         //-----------------------------------------
71         $('#' + saveChangesId).click(function () {
72                 // Save changes
73                 saveChanges('admin');
74         });
75
76         //-----------------------------------------
77         //              Drag'N'Drop
78         //-----------------------------------------
79         $('#admin_warning').draggable({
80                 opacity: 0.85
81         });
82
83         $('#admin_error').draggable({
84                 opacity: 0.85
85         });
86 });