move feedOpToolbar
This commit is contained in:
parent
81cd6cacaa
commit
19d96bebda
|
@ -984,6 +984,21 @@
|
||||||
|
|
||||||
print "<p>";
|
print "<p>";
|
||||||
|
|
||||||
|
print "<div id=\"feedOpToolbar\">";
|
||||||
|
|
||||||
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
||||||
|
|
||||||
|
print __('Selection:') . " ";
|
||||||
|
|
||||||
|
print_feed_cat_select($link, "sfeed_set_fcat", "", "disabled");
|
||||||
|
|
||||||
|
print " <input type=\"submit\" class=\"button\" disabled=\"true\"
|
||||||
|
onclick=\"javascript:categorizeSelectedFeeds()\" value=\"".
|
||||||
|
__('Recategorize')."\">";
|
||||||
|
}
|
||||||
|
|
||||||
|
print "</div>";
|
||||||
|
|
||||||
print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
|
print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
|
||||||
<option value=\"facDefault\" selected>".__('Actions...')."</option>
|
<option value=\"facDefault\" selected>".__('Actions...')."</option>
|
||||||
<option disabled>--------</option>
|
<option disabled>--------</option>
|
||||||
|
@ -1001,9 +1016,7 @@
|
||||||
</option>";
|
</option>";
|
||||||
}
|
}
|
||||||
|
|
||||||
print "</select>";
|
print "</select>";
|
||||||
|
|
||||||
print "<span id=\"feedOpToolbar\">";
|
|
||||||
|
|
||||||
/* print "<input type=\"submit\" class=\"button\" disabled=\"true\"
|
/* print "<input type=\"submit\" class=\"button\" disabled=\"true\"
|
||||||
onclick=\"javascript:editSelectedFeed()\" value=\"".__('Edit')."\">
|
onclick=\"javascript:editSelectedFeed()\" value=\"".__('Edit')."\">
|
||||||
|
@ -1011,19 +1024,6 @@
|
||||||
onclick=\"javascript:removeSelectedFeeds()\"
|
onclick=\"javascript:removeSelectedFeeds()\"
|
||||||
value=\"".__('Unsubscribe')."\">"; */
|
value=\"".__('Unsubscribe')."\">"; */
|
||||||
|
|
||||||
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
||||||
|
|
||||||
print " | " . __('Selection:') . " ";
|
|
||||||
|
|
||||||
print_feed_cat_select($link, "sfeed_set_fcat", "", "disabled");
|
|
||||||
|
|
||||||
print " <input type=\"submit\" class=\"button\" disabled=\"true\"
|
|
||||||
onclick=\"javascript:categorizeSelectedFeeds()\" value=\"".
|
|
||||||
__('Recategorize')."\">";
|
|
||||||
}
|
|
||||||
|
|
||||||
print "</span>";
|
|
||||||
|
|
||||||
// if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
// if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
||||||
|
|
||||||
/* print " <input type=\"submit\" class=\"button\"
|
/* print " <input type=\"submit\" class=\"button\"
|
||||||
|
|
|
@ -1694,3 +1694,6 @@ div.autocomplete ul li {
|
||||||
cursor : pointer;
|
cursor : pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#feedOpToolbar {
|
||||||
|
float : right;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue