diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-05-29 18:06:30 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-05-29 18:06:30 +0200 |
commit | 89cb8a3217edf0f374122e678e48e65a5c86c998 (patch) | |
tree | 5134c48c58563c6ea58069528e85bde6b386b4a8 | |
parent | 0d5f074f54caeeffcc9deea840fb1dc59911a596 (diff) | |
download | forums-89cb8a3217edf0f374122e678e48e65a5c86c998.tar forums-89cb8a3217edf0f374122e678e48e65a5c86c998.tar.gz forums-89cb8a3217edf0f374122e678e48e65a5c86c998.tar.bz2 forums-89cb8a3217edf0f374122e678e48e65a5c86c998.tar.xz forums-89cb8a3217edf0f374122e678e48e65a5c86c998.zip |
[ticket/6466] Minor documentation changes
PHPBB3-6466
-rw-r--r-- | phpBB/adm/style/tooltip.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/adm/style/tooltip.js b/phpBB/adm/style/tooltip.js index f78e1da81f..a52fa36853 100644 --- a/phpBB/adm/style/tooltip.js +++ b/phpBB/adm/style/tooltip.js @@ -20,7 +20,7 @@ var tooltips = []; * Enable tooltip replacements for selects * @param {string} id ID tag of select * @param {string} headline Text that should appear on top of tooltip - * @param {string} subId Sub ID that should only be using tooltips (optional) + * @param {string} [subId] Sub ID that should only be using tooltips (optional) */ phpbb.enableTooltipsSelect = function (id, headline, subId) { var $links, hold; @@ -53,7 +53,7 @@ phpbb.enableTooltipsSelect = function (id, headline, subId) { /** * Prepare elements to replace * - * @param {object} $element Element to prepare for tooltips + * @param {jQuery} $element Element to prepare for tooltips * @param {string} headText Text heading to display */ phpbb.prepareTooltips = function ($element, headText) { @@ -119,7 +119,7 @@ phpbb.createElement = function (tag, c) { /** * Correct positioning of tooltip container * - * @param {object} $element Tooltip element that should be positioned + * @param {jQuery} $element Tooltip element that should be positioned */ phpbb.positionTooltip = function ($element) { var offset; |