1
1
Fork 0

@brief is removed completely

This commit is contained in:
Michael 2020-01-19 06:05:23 +00:00
commit 0a4119adaf
170 changed files with 901 additions and 962 deletions

View file

@ -1,5 +1,5 @@
/**
* @brief Javascript for the admin module
* Javascript for the admin module
*/
$(function() {
$('body').on('click', '.selectall', function() {

View file

@ -20,7 +20,7 @@ $(document).ready(function() {
});
/**
* @brief This function submits the form with the batch action values.
* This function submits the form with the batch action values.
*
* @param {string} name The name of the batch action.
* @param {string} value If it isn't empty the action will be posted.

View file

@ -1,5 +1,5 @@
/**
* @brief Javascript for the display module
* Javascript for the display module
*/
// Catch the GUID from the URL

View file

@ -1,6 +1,6 @@
/**
* @file view/theme/frio/js/mod_events.js
* @brief Initialization of the fullCalendar and format the output.
* Initialization of the fullCalendar and format the output.
*/
$(document).ready(function() {

View file

@ -1,7 +1,7 @@
/**
* @file view/theme/frio/js/mod_group.js
* @brief The javascript for the group module
* The javascript for the group module
*/
@ -13,7 +13,7 @@ $(document).ready(function() {
});
/**
* @brief Change the group membership of the contacts and fetch the new grup list
* Change the group membership of the contacts and fetch the new grup list
* as html
*
* @param {int} gid The group ID
@ -41,7 +41,7 @@ function groupChangeMember(gid, cid, sec_token) {
}
/**
* @brief Change the group list view mode
* Change the group list view mode
*
* @param {object} elm The button element of the view mode switcher
* @returns {undefined}
@ -61,7 +61,7 @@ function switchGroupViewMode(elm) {
}
/**
* @brief Filter the group member list for contacts
* Filter the group member list for contacts
*
* @returns {undefined}
*/

View file

@ -1,6 +1,6 @@
/**
* @brief Javascript for the notifications module
* Javascript for the notifications module
*/
// Catch the intro ID from the URL

View file

@ -1,5 +1,5 @@
/**
* @brief Contains functions for bootstrap modal handling.
* Contains functions for bootstrap modal handling.
*/
$(document).ready(function(){
// Clear bs modal on close.
@ -175,7 +175,7 @@ Dialog._load = function(url) {
};
/**
* @brief Add first element with the class "heading" as modal title
* Add first element with the class "heading" as modal title
*
* Note: this should be really done in the template
* and is the solution where we havent done it until this

View file

@ -1,5 +1,5 @@
/*
* @brief The file contains functions for text editing and commenting
* The file contains functions for text editing and commenting
*/
// Lifted from https://css-tricks.com/snippets/jquery/move-cursor-to-end-of-textarea-or-input/