aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/assets/javascript
Commit message (Collapse)AuthorAgeFilesLines
...
* [feature/ajax] Refactor phpbb.ajaxify event callbackIgor Wiedler2012-03-311-31/+25
| | | | PHPBB3-10270
* [feature/ajax] Bind to form.submit instead of form input.clickIgor Wiedler2012-03-311-9/+5
| | | | PHPBB3-10270
* [feature/ajax] Rename exception to filterIgor Wiedler2012-03-311-5/+5
| | | | PHPBB3-10270
* [feature/ajax] Add a missing semicolonIgor Wiedler2012-03-311-1/+1
| | | | PHPBB3-10270
* [feature/ajax] Fix the alt_text ajax callbackIgor Wiedler2012-03-311-3/+2
| | | | PHPBB3-10270
* [feature/ajax] Make phpbb.ajaxify signature use single object (more explicit)Igor Wiedler2012-03-311-3/+6
| | | | PHPBB3-10270
* [feature/ajax] Only allow object argument for phpbb.ajaxifyIgor Wiedler2012-03-311-2/+2
| | | | PHPBB3-10270
* [feature/ajax] Fix alt_text and overlay closingIgor Wiedler2012-03-311-5/+12
| | | | PHPBB3-10270
* [feature/ajax] JavaScript strict modeIgor Wiedler2012-03-311-0/+2
| | | | PHPBB3-10270
* [feature/ajax] Stylistic JavaScript adjustmentsIgor Wiedler2012-03-311-2/+6
| | | | PHPBB3-10270
* [feature/ajax] Replace return false with explicit preventDefault()Igor Wiedler2012-03-311-12/+20
| | | | PHPBB3-10270
* [feature/ajax] Use attr('data-foo') instead of data('foo')Igor Wiedler2012-03-311-5/+5
| | | | | | | data() is slower and does additional unwanted things like caching and type conversion. Just reading the value is safer. PHPBB3-10270
* [feature/ajax] Replace keyboard vars with a keymapIgor Wiedler2012-03-311-6/+7
| | | | PHPBB3-10270
* [ticket/10271] Added some documentation to phpbb.ajaxify.Callum Macrae2012-03-311-3/+15
| | | | PHPBB3-10271
* [ticket/10271] Renamed an unhelpful variable name in core.js.Callum Macrae2012-03-311-4/+4
| | | | PHPBB3-10271
* [ticket/10270] Moved the AJAX error langyage entries to the footer.Callum Macrae2012-03-311-5/+5
| | | | PHPBB3-10270
* [ticket/10272] Renamed l-err-processing-req to l-timeout-processing-req.Callum Macrae2012-03-311-1/+1
| | | | PHPBB3-10272
* [ticket/10270] Recoded some potentially buggy code in phpbb.confirm.Callum Macrae2012-03-311-5/+6
| | | | | | The code before could have removed event handlers defined by other code. PHPBB3-10270
* [ticket/10271] Started using .call for javascript callbacks.Callum Macrae2012-03-311-3/+3
| | | | | | | | Previously, they were just being called by appending parentheses and functions. Now, they're being called and the element is being set as the context instead of a parameter. It's a lot cleaner. PHPBB3-10271
* [ticket/10270] Fixed a bug with the close button in phpbb.confirm.Callum Macrae2012-03-311-1/+7
| | | | PHPBB3-10270
* [ticket/10271] Fixed the comment for phpbb.parse_querystring.Callum Macrae2012-03-311-1/+1
| | | | PHPBB3-10271
* [ticket/10271] Reduced calls to $ in phpbb.ajaxify.Callum Macrae2012-03-311-6/+6
|
* [ticket/10271] Renamed the "act" js variable to "action".Callum Macrae2012-03-311-6/+6
| | | | PHPBB3-10271
* [ticket/10271] Improved the comments on return_handler.Callum Macrae2012-03-311-2/+7
| | | | PHPBB3-10271
* [ticket/10271] Reduced calls to $ in the AJAX JavaScript.Callum Macrae2012-03-311-3/+4
| | | | PHPBB3-10271
* [ticket/10271] Added comments to AJAX callbacks.Callum Macrae2012-03-311-0/+5
| | | | PHPBB3-10271
* [ticket/10270] Renamed a variable in phpbb.parse_querystring.Callum Macrae2012-03-311-3/+3
| | | | | | | It was originally "end", but was renamed to "params" to be more descriptive. PHPBB3-10270
* [ticket/10270] Reduced calls to split in phpbb.parse_querystring.Callum Macrae2012-03-311-2/+3
| | | | PHPBB3-10270
* [ticket/10270] Fixed comments for phpbb.alert and phpbb.confirm.Callum Macrae2012-03-311-2/+6
| | | | PHPBB3-10270
* [ticket/10270] Added a new line to constant declarations in JS.Callum Macrae2012-03-311-1/+2
| | | | PHPBB3-10270
* [ticket/10270] Added a comment to phpbb.loading_alert.Callum Macrae2012-03-311-0/+1
| | | | PHPBB3-10270
* [ticket/10270] Made a comment clearer for phpbb.confirm.Callum Macrae2012-03-311-1/+1
| | | | PHPBB3-10270
* [ticket/10270] DRYed alert fades in core.js.Callum Macrae2012-03-311-15/+16
| | | | PHPBB3-10270
* [ticket/10272] Fixed a bug in the ajax exceptions callback handler.Callum Macrae2012-03-311-1/+1
| | | | | | | It was using code copied from a few lines above, which was designed for forms and doesn't work with links. PHPBB3-10272
* [ticket/10271] Added comments to the JavaScript ajax functions.Callum Macrae2012-03-311-1/+25
| | | | PHPBB3-10271
* [ticket/10270] Replaced find by tag names with class names in the js.Callum Macrae2012-03-311-3/+3
| | | | | | | What it was before (selecting by tag name) could have caused some problems for style authors. PHPBB3-10270
* [ticket/10270] Replaced keydown numbers with named constants.Callum Macrae2012-03-311-3/+5
| | | | PHPBB3-10270
* [ticket/10271] Removed excess whitespace from core.js.Callum Macrae2012-03-311-18/+18
| | | | PHPBB3-10271
* [ticket/10270] Renamed the CSS class "jalert" to "phpbb_alert".Callum Macrae2012-03-311-7/+12
| | | | PHPBB3-10270
* [ticket/10270] Added close buttons to phpbb.alert and phpbb.confirm.Callum Macrae2012-03-311-0/+17
| | | | PHPBB3-10270
* [ticket/10270] Removed all the inline language and HTML from the JS.Callum Macrae2012-03-311-8/+15
| | | | PHPBB3-10270
* [feature/ajax] Moved script.js into a few different files.Callum Macrae2012-03-311-0/+300
| | | | | | | Seperated it into: assets/javascript/core.js, styles/prosilver/template/ajax.js and adm/style/ajax.js. PHPBB3-10270
* [ticket/10155] Update to jQuery 1.6.2Igor Wiedler2011-07-121-3/+5
| | | | PHPBB3-10155
* [ticket/10155] Add jQuery, introduce global assets pathIgor Wiedler2011-07-111-0/+16
Add the jQuery JavaScript library to all pages, giving modifications instant access and allowing for any future core JavaScript to take advantage of it. Also introduce a global /assets directory for assets that are shared between styles. PHPBB3-10155