You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

56 lines
1.8 KiB

/*************************************************
* ownCloud - Calendar Plugin *
* *
* (c) Copyright 2011 Georg Ehrke *
* author: Georg Ehrke *
* email: ownclouddev at georgswebsite dot de *
* homepage: ownclouddev.georgswebsite.de *
* manual: ownclouddev.georgswebsite.de/manual *
* License: GNU General Public License (GPL) *
* *
* <http://www.gnu.org/licenses/> *
* If you are not able to view the License, *
* <http://www.gnu.org/licenses/> *
* <http://ownclouddev.georgswebsite.de/license/> *
* please write to the Free Software Foundation. *
* Address: *
* 59 Temple Place, Suite 330, Boston, *
* MA 02111-1307 USA *
**************************************************
* list of all fx *
* choosecalendar_dialog - calendar chooser *
* newevent_dialog - create event dialog *
* editevent_dialog - edit event dialog *
* choosecalendar_dialog_submit - submit *
* newevent_dialog_submit - submit *
* editevent_dialog_submit - submit *
*************************************************/
function choosecalendar_dialog() {
$( function() {
$( "#choosecalendar_dialog" ).dialog();
});
}
function newevent_dialog() {
$( function() {
$( "#newevent" ).dialog();
});
}
function editevent_dialog() {
$( function() {
$( "#editevent" ).dialog();
});
}
function choosecalendar_dialog_submit() {
}
function newevent_dialog_submit() {
}
function editevent_dialog_submit() {
}