| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [feature/ajax] Only allow object argument for phpbb.ajaxify | Igor Wiedler | 2012-03-31 | 1 | -2/+2 |
| | | | | | PHPBB3-10270 | ||||
| * | [feature/ajax] Fix alt_text and overlay closing | Igor Wiedler | 2012-03-31 | 1 | -5/+12 |
| | | | | | PHPBB3-10270 | ||||
| * | [feature/ajax] JavaScript strict mode | Igor Wiedler | 2012-03-31 | 3 | -0/+4 |
| | | | | | PHPBB3-10270 | ||||
| * | [feature/ajax] Stylistic JavaScript adjustments | Igor Wiedler | 2012-03-31 | 3 | -17/+35 |
| | | | | | PHPBB3-10270 | ||||
| * | [feature/ajax] Replace return false with explicit preventDefault() | Igor Wiedler | 2012-03-31 | 1 | -12/+20 |
| | | | | | PHPBB3-10270 | ||||
| * | [feature/ajax] Use attr('data-foo') instead of data('foo') | Igor Wiedler | 2012-03-31 | 3 | -14/+14 |
| | | | | | | | | 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 keymap | Igor Wiedler | 2012-03-31 | 1 | -6/+7 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10271] Added some documentation to phpbb.ajaxify. | Callum Macrae | 2012-03-31 | 1 | -3/+15 |
| | | | | | PHPBB3-10271 | ||||
| * | [ticket/10271] Renamed an unhelpful variable name in core.js. | Callum Macrae | 2012-03-31 | 1 | -4/+4 |
| | | | | | PHPBB3-10271 | ||||
| * | [ticket/10271] Improved the AJAXification of the quick-mod tools. | Callum Macrae | 2012-03-31 | 1 | -1/+1 |
| | | | | | | | Instead of passing the querystring, now gets the value properly. PHPBB3-10271 | ||||
| * | [ticket/10272] Removed some duplication calls to $.fn.data. | Callum Macrae | 2012-03-31 | 2 | -6/+6 |
| | | | | | PHPBB3-10272 | ||||
| * | [ticket/10270] Moved the AJAX error langyage entries to the footer. | Callum Macrae | 2012-03-31 | 4 | -8/+8 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10272] Made a JS selector less specific. | Callum Macrae | 2012-03-31 | 1 | -1/+1 |
| | | | | | | | | Now, style authors can change the posts to not be divs without the code breaking! PHPBB3-10272 | ||||
| * | [ticket/10272] Renamed AJAX callback act_deact to activate_deactivate. | Callum Macrae | 2012-03-31 | 4 | -4/+4 |
| | | | | | PHPBB3-10272 | ||||
| * | [ticket/10272] Renamed l-err-processing-req to l-timeout-processing-req. | Callum Macrae | 2012-03-31 | 3 | -3/+3 |
| | | | | | PHPBB3-10272 | ||||
| * | [ticket/10272] Added a space to the beginning of a comment. | Callum Macrae | 2012-03-31 | 1 | -1/+1 |
| | | | | | PHPBB3-10272 | ||||
| * | [ticket/10272] Renamed a JavaScript variable. | Callum Macrae | 2012-03-31 | 1 | -2/+2 |
| | | | | | PHPBB3-10272 | ||||
| * | [ticket/10271] Added a comment to the AJAXification of quick-mod tools. | Callum Macrae | 2012-03-31 | 1 | -0/+2 |
| | | | | | | | The comment clarifies which make_ functions use AJAX. PHPBB3-10271 | ||||
| * | [ticket/10328] Fixed the header of json_response.php. | Callum Macrae | 2012-03-31 | 1 | -2/+1 |
| | | | | | PHPBB3-10328 | ||||
| * | [ticket/10270] Recoded some potentially buggy code in phpbb.confirm. | Callum Macrae | 2012-03-31 | 1 | -5/+6 |
| | | | | | | | The code before could have removed event handlers defined by other code. PHPBB3-10270 | ||||
| * | [ticket/10270] Fixed JavaScript alerts in the ACP. | Callum Macrae | 2012-03-31 | 3 | -4/+10 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10271] Started using .call for javascript callbacks. | Callum Macrae | 2012-03-31 | 3 | -26/+25 |
| | | | | | | | | | 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 Macrae | 2012-03-31 | 1 | -1/+7 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10271] Fixed the comment for phpbb.parse_querystring. | Callum Macrae | 2012-03-31 | 1 | -1/+1 |
| | | | | | PHPBB3-10271 | ||||
| * | [ticket/10273] Changed variable names in the quickmodform AJAX. | Callum Macrae | 2012-03-31 | 1 | -3/+7 |
| | | | | | | | They're now more descriptive. PHPBB3-10273 | ||||
| * | [ticket/10271] Reduced calls to $ in phpbb.ajaxify. | Callum Macrae | 2012-03-31 | 1 | -6/+6 |
| | | |||||
| * | [ticket/10271] Renamed the "act" js variable to "action". | Callum Macrae | 2012-03-31 | 1 | -6/+6 |
| | | | | | PHPBB3-10271 | ||||
| * | [ticket/10271] Improved the comments on return_handler. | Callum Macrae | 2012-03-31 | 1 | -2/+7 |
| | | | | | PHPBB3-10271 | ||||
| * | [ticket/10271] data-ajax="false" is now ignored. | Callum Macrae | 2012-03-31 | 2 | -4/+10 |
| | | | | | PHPBB3-10271 | ||||
| * | [ticket/10271] Reduced calls to $ in the AJAX JavaScript. | Callum Macrae | 2012-03-31 | 3 | -20/+27 |
| | | | | | PHPBB3-10271 | ||||
| * | [ticket/10271] Added comments to AJAX callbacks. | Callum Macrae | 2012-03-31 | 3 | -8/+48 |
| | | | | | PHPBB3-10271 | ||||
| * | [ticket/10270] Renamed a variable in phpbb.parse_querystring. | Callum Macrae | 2012-03-31 | 1 | -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 Macrae | 2012-03-31 | 1 | -2/+3 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10270] Fixed comments for phpbb.alert and phpbb.confirm. | Callum Macrae | 2012-03-31 | 1 | -2/+6 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10270] Added a new line to constant declarations in JS. | Callum Macrae | 2012-03-31 | 1 | -1/+2 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10270] Added a comment to phpbb.loading_alert. | Callum Macrae | 2012-03-31 | 1 | -0/+1 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10270] Made a comment clearer for phpbb.confirm. | Callum Macrae | 2012-03-31 | 1 | -1/+1 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10270] DRYed alert fades in core.js. | Callum Macrae | 2012-03-31 | 1 | -15/+16 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10272] Fixed a bug in the ajax exceptions callback handler. | Callum Macrae | 2012-03-31 | 1 | -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 Macrae | 2012-03-31 | 1 | -1/+25 |
| | | | | | PHPBB3-10271 | ||||
| * | [ticket/10270] Replaced find by tag names with class names in the js. | Callum Macrae | 2012-03-31 | 3 | -8/+8 |
| | | | | | | | | What it was before (selecting by tag name) could have caused some problems for style authors. PHPBB3-10270 | ||||
| * | [ticket/10270] Added the alerts to the ACP footer. | Callum Macrae | 2012-03-31 | 1 | -0/+11 |
| | | | | | | | I had forgotten to do it previously. PHPBB3-10270 | ||||
| * | [ticket/10270] Replaced keydown numbers with named constants. | Callum Macrae | 2012-03-31 | 1 | -3/+5 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10271] Removed excess whitespace from core.js. | Callum Macrae | 2012-03-31 | 1 | -18/+18 |
| | | | | | PHPBB3-10271 | ||||
| * | [ticket/10270] Renamed the CSS class "jalert" to "phpbb_alert". | Callum Macrae | 2012-03-31 | 3 | -14/+19 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10270] Added close buttons to phpbb.alert and phpbb.confirm. | Callum Macrae | 2012-03-31 | 4 | -1/+28 |
| | | | | | PHPBB3-10270 | ||||
| * | [ticket/10270] Removed all the inline language and HTML from the JS. | Callum Macrae | 2012-03-31 | 6 | -24/+30 |
| | | | | | PHPBB3-10270 | ||||
| * | [feature/ajax] Moved script.js into a few different files. | Callum Macrae | 2012-03-31 | 5 | -104/+133 |
| | | | | | | | | Seperated it into: assets/javascript/core.js, styles/prosilver/template/ajax.js and adm/style/ajax.js. PHPBB3-10270 | ||||
| * | [ticket/10270] Removed some unnecessary calls to $() in script.js. | Callum Macrae | 2012-03-31 | 1 | -18/+14 |
| | | | | | | | | Sometimes, jQuery objects were being sent through the jQuery function again, wasting resources. PHPBB3-10270 | ||||
| * | [ticket/10328] Added capital to "Content-type" in phpbb_json_response. | Callum Macrae | 2012-03-31 | 1 | -1/+1 |
| | | | | | | | | It was originally Content-type, but has been replaced with Content-Type, which is correct. PHPBB3-10328 | ||||
