aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/assets/javascript
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/13277] Force IE to not cache AJAX requests.Cesar G2014-11-181-1/+2
| | | | | | | Caching causes problems, such as the inability to move a forum/CPF/module in the same direction by more than one row. PHPBB3-13277
* [ticket/13239] Ensure "Add files" button position is correctly calculated.Cesar G2014-11-111-0/+8
| | | | PHPBB3-13239
* Merge pull request #2844 from marc1706/ticket/12858Joas Schilling2014-09-241-3/+3
|\ | | | | | | [ticket/12858] Remove hard-coded GMT from timezone drop-down and rename to UTC
| * [ticket/12858] Remove hardcoded language entries from timezone selectsMarc Alexander2014-09-171-3/+3
| | | | | | | | PHPBB3-12858
* | [ticket/13011] Do not apply bbcode to whole text when selecting first 2 chars.Cesar G2014-09-231-4/+0
|/ | | | PHPBB3-13011
* [ticket/13069] Fix timezone location filtering.Cesar G2014-09-161-6/+1
| | | | | | | | | | $timezone contains the original jQuery object, therefore the subsequent removal of the optgroup children while filtering has no effect on the $replacement object - the one that's now visible to the user. We'll simplify and fix this by injecting the content of the copy instead of going through the trouble of cloning it. PHPBB3-13069
* [ticket/13018] Clean up and fix some logic.Cesar G2014-09-151-4/+3
| | | | PHPBB3-13018
* [ticket/13018] Do not handle events in close function.Cesar G2014-09-151-14/+13
| | | | PHPBB3-13018
* [ticket/13018] Reduce the delta further.Cesar G2014-09-141-28/+14
| | | | | | | The callback does not actually do anything when cancelling the confirmation box so we can avoid calling it altogether when cancel is clicked. PHPBB3-13018
* [ticket/13018] Remove duplicate logic in confirm box and alert box handling.Cesar G2014-09-141-85/+73
| | | | | | | | This ensures a more consistent handling of the various closing/opening actions and fixes some bugs where certain event handlers are not turned off in certain instances. PHPBB3-13018
* [ticket/12982] Refactoring: Killed undescriptive variablesCallum Macrae2014-09-101-33/+34
| | | | PHPBB3-12982
* [ticket/12982] Refactoring: Cleaned up phpbb.searchCallum Macrae2014-08-131-59/+74
| | | | PHPBB3-12982
* [ticket/12982] Refactoring: made most JS nice.Callum Macrae2014-08-131-219/+245
| | | | PHPBB3-12982
* Merge branch 'ticket/sumanai/12843' into develop-ascraeusJoas Schilling2014-07-271-0/+12
|\ | | | | | | | | * ticket/sumanai/12843: [ticket/12843] Fix Mark forums read browser console error
| * [ticket/12843] Fix Mark forums read browser console errorSumanai2014-07-271-0/+12
| | | | | | | | | | | | | | | | When you click on "Mark forums read" in the browser console error occurs ReferenceError: assignment to undeclared variable phpbbAlertTimer ajax.js (line13) PHPBB3-12843
* | Merge pull request #2731 from callumacrae/ticket/12849-2Andreas Fischer2014-07-141-1/+1
|\ \ | | | | | | | | | | | | | | | | | | [ticket/12849] Fixed possible ReferenceError in core.js. * callumacrae/ticket/12849-2: [ticket/12849] Fixed possible ReferenceError in core.js.
| * | [ticket/12849] Fixed possible ReferenceError in core.js.Callum Macrae2014-07-131-1/+1
| | | | | | | | | | | | PHPBB3-12849
* | | [ticket/12013] Prevent the dropdown scrollbar from overlapping the content.Cesar G2014-07-041-0/+4
| | | | | | | | | | | | PHPBB3-12013
* | | [ticket/12662] Fix notifications dropdown positioning for RTLPayBas2014-06-251-0/+14
| | | | | | | | | | | | PHPBB3-12662
* | | Merge pull request #2514 from prototech/ticket/12553Joas Schilling2014-06-201-17/+41
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12553] Right-to-left fixes. * prototech/ticket/12553: [ticket/12553] Fix responsive user profile. [ticket/12553] Fix responsive post profile. [ticket/12553] Remove dropdown-trigger class from member search input. [ticket/12553] Fix the merge topic list. [ticket/12553] Fix dropdown position of live search [ticket/12553] Fix the responsive topic/forum lists. [ticket/12553] Align the text in responsive tables to the right. [ticket/12553] Center the responsive CP menus instead of floating right. [ticket/12553] Open the notification dropdown to the left. [ticket/12553] Fix alignment of contact icon. [ticket/12553] Fix incorrect alignment in ACP responsive tables. [ticket/12553] Align alert text to the right. [ticket/12553] Remove incorrect size for site logo. [ticket/12553] Fix links in the last post column that are not clickable. [ticket/12553] Align contact icons to the right. [ticket/12553] Move Place inline and Delete buttons left of the file name.
| * | [ticket/12553] Open the notification dropdown to the left.Cesar G2014-06-141-17/+41
| | | | | | | | | | | | PHPBB3-12553
* | | [ticket/12699] Replace magic numbers for the TAB and for ENTER keydownbrunoais2014-06-171-5/+5
| | | | | | | | | | | | | | | | | | | | | Replaced the magic numbers 9 and 13 in the keydown for the text editor with constants in the existing keymap for phpBB. PHPBB3-12699
* | | [ticket/12699] Add tab key to keymapbrunoais2014-06-131-0/+1
|/ / | | | | | | PHPBB3-12699
* | [ticket/12672] Make tab intercept; CB for keypress only react without key modsbrunoais2014-06-071-1/+5
| | | | | | | | | | | | | | | | | | Changed the callback of keypress inside the <textarea> for the posting such that, if key 9 is pressed (tab character) and ctrl, shift, alt and meta are not pressed the tab is placed. Otherwise, nothing is made and default is not prevented. PHPBB3-12672
* | [ticket/12541] Activate attachments tab when files are dropped into textareaPayBas2014-06-021-0/+5
|/ | | | PHPBB3-12541
* [ticket/12155] Make the buttons bigger on touch devices.Cesar G2014-05-271-2/+2
| | | | PHPBB3-12155
* Merge pull request #2458 from prototech/ticket/12543Joas Schilling2014-05-241-2/+2
|\ | | | | | | | | | | | | [ticket/12543] Only take over ENTER and ESC keys when alert box is active. * prototech/ticket/12543: [ticket/12543] Only take over ENTER and ESC keys when alert box is active.
| * [ticket/12543] Only take over ENTER and ESC keys when alert box is active.Cesar G2014-05-131-2/+2
| | | | | | | | PHPBB3-12543
* | [ticket/12572] Fix JS error when alert message title is undefinedrxu2014-05-221-1/+3
| | | | | | | | | | | | | | | | | | JS console reports error in core.js: TypeError: alert is undefined alert.hide() when res.MESSAGE_TITLE is undefined. PHPBB3-12572
* | [ticket/12547] Rename jquery.js to jquery.min.js in assets directoryn-aleha2014-05-151-0/+0
|/ | | | | | phpBB uses the minified version of jQuery hence the rename. PHPBB3-12547
* [ticket/9388] Use "togglable" instead of "toggable"Cesar G2014-05-091-1/+1
| | | | PHPBB3-9388
* [ticket/9388] Add support for making <select> options able to toggle settings.Cesar G2014-05-081-0/+25
| | | | PHPBB3-9388
* [ticket/12440] Use a more generic approach for replacing the URL.Cesar G2014-05-061-15/+71
| | | | PHPBB3-12440
* [ticket/12440] Set browser URL to point to specific post when using view=unreadCesar G2014-05-051-0/+16
| | | | PHPBB3-12440
* Merge pull request #2267 from prototech/ticket/10737Joas Schilling2014-05-031-17/+331
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/10737] Add live member search. * prototech/ticket/10737: [ticket/10737] Remove loading indicator. [ticket/10737] Enforce allow_live_searches setting in memberlist.php. [ticket/10737] Add config setting to disable live searches. [ticket/10737] Add loading indicator and alert box code to simple_footer.html. [ticket/10737] Load core.js and ajax.js in simple_footer.html. [ticket/10737] Set the username as the input value instead of redirecting. [ticket/10737] Drop subsilver2 changes. [ticket/10737] Add a more generic live search implementation. [ticket/10737] Clean up memberlist.php. [ticket/10737] Use dropdown for search results container. [ticket/10737] Adding delayed keyup and removing target_blank. [ticket/10737] Using UTF-8 aware alternatives in PHP code. [ticket/10737] Removing obsolete code. [ticket/10737] Avoid hard-coding table row and use case-insensitive search. [ticket/10737] Removing unnecessary/obsolete code. [ticket/10737] Using JQuery events and JSON response. [ticket/10737] Code fixes in AJAX search feature [ticket/10737] Improvements over last commit [ticket/10737] Adding username suggestions in "Find a member" using AJAX
| * [ticket/10737] Set the username as the input value instead of redirecting.Cesar G2014-04-231-4/+4
| | | | | | | | PHPBB3-10737
| * [ticket/10737] Add a more generic live search implementation.Cesar G2014-04-231-62/+331
| | | | | | | | PHPBB3-10737
| * [ticket/10737] Adding delayed keyup and removing target_blank.Suhaib Khan2014-04-231-26/+37
| | | | | | | | PHPBB3-10737
| * [ticket/10737] Removing obsolete code.Suhaib Khan2014-04-231-2/+2
| | | | | | | | PHPBB3-10737
| * [ticket/10737] Avoid hard-coding table row and use case-insensitive search.Suhaib Khan2014-04-231-10/+18
| | | | | | | | PHPBB3-10737
| * [ticket/10737] Using JQuery events and JSON response.Suhaib Khan2014-04-231-0/+26
| | | | | | | | PHPBB3-10737
* | Merge remote-tracking branch 'github-prototech/ticket/12265' into ↵Nils Adermann2014-05-021-2/+10
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-ascraeus * github-prototech/ticket/12265: [ticket/12265] Actually use $u_pm. [ticket/12265] Ensure that dropdown is always at the very left of the container [ticket/12265] Define a loop for contact icons. [ticket/12265] Break the icons that aren't in loop in case extensions add more [ticket/12265] Fix modulo logic. [ticket/12265] Adjust alignment of AIM and Jabber icons. [ticket/12265] Ensure that there's only 4 icons per row in IE & Opera. [ticket/12265] Add contact icon and remove border from last row & cells. [ticket/12265] Fix issue with dropdown being restricted by the width of parent [ticket/12265] Remove ugly logic. [ticket/12265] Simplify contact icon design and move to dropdown. Conflicts: phpBB/viewtopic.php
| * | [ticket/12265] Fix issue with dropdown being restricted by the width of parentCesar G2014-04-151-2/+10
| |/ | | | | | | PHPBB3-12265
* | [ticket/11339] Always clear timeout functions on subsequent AJAX callsCesar G2014-04-251-1/+2
|/ | | | PHPBB3-11339
* Merge remote-tracking branch 'marc/ticket/12372' into develop-ascraeusJoas Schilling2014-04-141-0/+21
|\ | | | | | | | | | | | | | | | | | | * marc/ticket/12372: [ticket/12372] Use $() instead of jQuery() in core.js for toggleDisplay [ticket/12372] Use admin.js $(document).ready for hiding questionnaire details [ticket/12372] Rename JS function dE() to phpbb.toggleDisplay() [ticket/12372] Move dE() function core.js [ticket/12372] Unify definition of function dE() across all files [ticket/12372] Use jQuery in javascript dE() function
| * [ticket/12372] Use $() instead of jQuery() in core.js for toggleDisplayMarc Alexander2014-04-111-2/+2
| | | | | | | | PHPBB3-12372
| * [ticket/12372] Rename JS function dE() to phpbb.toggleDisplay()Marc Alexander2014-04-071-1/+1
| | | | | | | | PHPBB3-12372
| * [ticket/12372] Move dE() function core.jsMarc Alexander2014-04-071-0/+21
| | | | | | | | PHPBB3-12372
* | [ticket/12355] Topic Tools not fully updated when subscribing/bookmarkingVarun Agrawal2014-04-111-19/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Topic Tools menu appears at the top of a topic page and again at the bottom of a topic page. When you use the Topic Tools menu to Bookmark or Subscribe to a Topic, the menu item you chose is updated to reflect that, by switching to say Unsubscribe topic or Remove from Bookmarks. However, this change is not mirrored in the other Topic Tools menu at the other location on the page. Both Topic Tools menus should be updated during the AJAX event, so that they always show the same options to the user. It is solved by creating a data-update-all attribute which contains all the class/ID that will update when topic tool is clicked PHPBB3-12355
* | [ticket/12375] Fix broken attachment deletion.Cesar G2014-04-081-4/+1
|/ | | | | | | | The response is already parsed and when running it through parseJSON returned null prior to 1.9. Now there's an actual error thrown, so the function is returning and thus leaving the attachment row intact. PHPBB3-12375