Index: trunk/extensions/ArticleFeedbackv5/modules/jquery.articleFeedbackv5/images/bg-submit.png |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Index: trunk/extensions/ArticleFeedbackv5/modules/jquery.articleFeedbackv5/jquery.articleFeedbackv5.css |
— | — | @@ -525,7 +525,7 @@ |
526 | 526 | |
527 | 527 | .articleFeedbackv5-ui .buttons .articleFeedbackv5-button-placeholder { |
528 | 528 | display: inline-block; |
529 | | - height: 19px; |
| 529 | + height: 22px; |
530 | 530 | line-height: 22px; |
531 | 531 | font-size: .9em; |
532 | 532 | min-width: 34px; |
— | — | @@ -586,7 +586,7 @@ |
587 | 587 | .articleFeedbackv5-ui .articleFeedbackv5-submit, |
588 | 588 | .articleFeedbackv5-ui .articleFeedbackv5-edit-cta-link { |
589 | 589 | float: left; |
590 | | - height: 29px; |
| 590 | + height: 35px !important; |
591 | 591 | width: auto; |
592 | 592 | text-align: center; |
593 | 593 | padding: 0 6px; |
— | — | @@ -616,7 +616,7 @@ |
617 | 617 | color: #fff; |
618 | 618 | /*text-shadow: 1px 1px 1px #000;*/ |
619 | 619 | padding: 1px 30px 0 0; |
620 | | - margin: 5px 0 0; |
| 620 | + margin: 8px 0 0; |
621 | 621 | background: url(images/bg-submit-icon.png) right center no-repeat; |
622 | 622 | } |
623 | 623 | |
Index: trunk/extensions/ArticleFeedbackv5/modules/jquery.articleFeedbackv5/jquery.articleFeedbackv5.js |
— | — | @@ -147,6 +147,7 @@ |
148 | 148 | <div class="articleFeedbackv5-buffer">\ |
149 | 149 | <div class="articleFeedbackv5-title-wrap">\ |
150 | 150 | <h2 class="articleFeedbackv5-title"></h2>\ |
| 151 | + <div class="clear"></div>\ |
151 | 152 | </div>\ |
152 | 153 | <div class="articleFeedbackv5-ui" />\ |
153 | 154 | </div>\ |
— | — | @@ -1331,7 +1332,7 @@ |
1332 | 1333 | // Slide-down for the expertise checkboxes |
1333 | 1334 | $block.find( '.articleFeedbackv5-expertise > input:checkbox' ) |
1334 | 1335 | .change( function () { |
1335 | | - var $options = $.articleFeedbackv5.find( '.articleFeedbackv5-expertise-options' ); |
| 1336 | + var $options = $.articleFeedbackv5.$holder.find( '.articleFeedbackv5-expertise-options' ); |
1336 | 1337 | if ( $(this).is( ':checked' ) ) { |
1337 | 1338 | $options.slideDown( 'fast' ); |
1338 | 1339 | } else { |
— | — | @@ -1410,7 +1411,7 @@ |
1411 | 1412 | }); |
1412 | 1413 | rlabel.mousedown( function () { |
1413 | 1414 | $.articleFeedbackv5.enableSubmission( true ); |
1414 | | - var $ui = $.articleFeedbackv5.find( '.articleFeedbackv5-ui' ); |
| 1415 | + var $ui = $.articleFeedbackv5.find( 'articleFeedbackv5-ui' ); |
1415 | 1416 | if ( $ui.hasClass( 'articleFeedbackv5-expired' ) ) { |
1416 | 1417 | // Changing one means the rest will get submitted too |
1417 | 1418 | $ui.removeClass( 'articleFeedbackv5-expired' ); |
— | — | @@ -1623,9 +1624,6 @@ |
1624 | 1625 | $.articleFeedbackv5.find( '.articleFeedbackv5-expertise input:checked' ).each( function () { |
1625 | 1626 | data['expertise-' + $( this ).val()] = 1; |
1626 | 1627 | } ); |
1627 | | - if ( $.articleFeedbackv5.find( '.articleFeedbackv5-helpimprove input:checked' ).length > 0 ) { |
1628 | | - data.email = $.articleFeedbackv5.find( '.articleFeedbackv5-helpimprove-email' ).val(); |
1629 | | - } |
1630 | 1628 | return data; |
1631 | 1629 | }, |
1632 | 1630 | |
— | — | @@ -1791,7 +1789,7 @@ |
1792 | 1790 | * The template for the whole block |
1793 | 1791 | */ |
1794 | 1792 | block: '\ |
1795 | | - <div class="articleFeedbackv5-confirmation-panel>\ |
| 1793 | + <div class="articleFeedbackv5-confirmation-panel">\ |
1796 | 1794 | <div class="articleFeedbackv5-panel-leftContent">\ |
1797 | 1795 | <div class="articleFeedbackv5-confirmation-text">\ |
1798 | 1796 | <span class=articleFeedbackv5-confirmation-thanks">[Thanks!]</span><span class="articleFeedbackv5-confirmation-follow-up">[Your feedback has been saved.]</span>\ |