1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php ! defined( 'ABSPATH' ) && exit(); ?><div class="totalpoll-settings-item"> <div class="totalpoll-settings-field"> <label class="totalpoll-settings-field-label"> <?php _e( 'Above', 'totalpoll' ); ?> <span class="totalpoll-feature-details" tooltip="<?php _e( 'This content will be shown above question and choices.', 'totalpoll' ); ?>">?</span> </label> <progressive-textarea ng-model="editor.settings.content.vote.above"></progressive-textarea> </div> </div> <div class="totalpoll-settings-item"> <div class="totalpoll-settings-field"> <label class="totalpoll-settings-field-label"> <?php _e( 'Below', 'totalpoll' ); ?> <span class="totalpoll-feature-details" tooltip="<?php _e( 'This content will be shown below question and choices.', 'totalpoll' ); ?>">?</span> </label> <progressive-textarea ng-model="editor.settings.content.vote.below"></progressive-textarea> </div> </div>
|