mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 03:35:55 +00:00
* fox.form.Select: add several properties allowing it to better
imitate other controls like DropDownButton, etc. * rework several main toolbar items to use fox.form.Select instead of other controls * replace HOOK_HEADLINE_TOOLBAR_SELECT_MENU_ITEM with HOOK_HEADLINE_TOOLBAR_SELECT_MENU_ITEM2 because of markup change (option instead of menuitem) * PluginHost: add some explicit typecasts to make intellephense shut up
This commit is contained in:
21
index.php
21
index.php
@@ -215,20 +215,13 @@
|
||||
?>
|
||||
</select>
|
||||
|
||||
<div class="catchup-button" dojoType="fox.form.ComboButton" onclick="Feeds.catchupCurrent()">
|
||||
<span><?= __('Mark as read') ?></span>
|
||||
<div dojoType="dijit.DropDownMenu">
|
||||
<div dojoType="dijit.MenuItem" onclick="Feeds.catchupCurrent('1day')">
|
||||
<?= __('Older than one day') ?>
|
||||
</div>
|
||||
<div dojoType="dijit.MenuItem" onclick="Feeds.catchupCurrent('1week')">
|
||||
<?= __('Older than one week') ?>
|
||||
</div>
|
||||
<div dojoType="dijit.MenuItem" onclick="Feeds.catchupCurrent('2week')">
|
||||
<?= __('Older than two weeks') ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<select class="catchup-button" id="main-catchup-dropdown" dojoType="fox.form.Select"
|
||||
data-prevent-value-change="true">
|
||||
<option value=""><?= __('Mark as read') ?></option>
|
||||
<option value="1day"><?= __('Older than one day') ?></option>
|
||||
<option value="1week"><?= __('Older than one week') ?></option>
|
||||
<option value="2week"><?= __('Older than two weeks') ?></option>
|
||||
</select>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user