diff options
author | rxu <rxu@mail.ru> | 2012-04-01 11:28:47 -0700 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2012-04-01 11:28:47 -0700 |
commit | bf0a3ddacafa434f2f33a28124e095e959e164b6 (patch) | |
tree | bc4723b9cd03def33316789203687e19a205431e /phpBB/styles/prosilver/template/ajax.js | |
parent | 9a075e905d23110f0b3310f9bfe6e89b44be1b57 (diff) | |
parent | 5ccd6915e3e8af30856319d84a48dde074fdbaee (diff) | |
download | forums-bf0a3ddacafa434f2f33a28124e095e959e164b6.tar forums-bf0a3ddacafa434f2f33a28124e095e959e164b6.tar.gz forums-bf0a3ddacafa434f2f33a28124e095e959e164b6.tar.bz2 forums-bf0a3ddacafa434f2f33a28124e095e959e164b6.tar.xz forums-bf0a3ddacafa434f2f33a28124e095e959e164b6.zip |
Merge pull request #670 from imkingdavid/feature/qrpreview
[feature/qrpreview] Preview from Quick Reply
Diffstat (limited to 'phpBB/styles/prosilver/template/ajax.js')
-rw-r--r-- | phpBB/styles/prosilver/template/ajax.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/ajax.js b/phpBB/styles/prosilver/template/ajax.js index cc886c42b1..54f34e4204 100644 --- a/phpBB/styles/prosilver/template/ajax.js +++ b/phpBB/styles/prosilver/template/ajax.js @@ -66,6 +66,17 @@ $('[data-ajax]').each(function() { }); +/** + * This simply appends #preview to the action of the + * QR action when you click the Full Editor & Preview button + */ +$('#qr_full_editor').click(function() { + $('#qr_postform').attr('action', function(i, val) { + return val + '#preview'; + }); +}); + + /** * This AJAXifies the quick-mod tools. The reason it cannot be a standard |