mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-02-28 15:10:54 +03:00
Enhancements for text editor (#277)
* Enhancements for text editor * Update CHANGELOG.md
This commit is contained in:
parent
71b3505dcd
commit
ad1d16af97
@ -6,6 +6,7 @@
|
||||
**Merged pull requests:**
|
||||
|
||||
- Release v2.1.5-2023.09 🎉
|
||||
- Enhancements for text editor [\#277](https://github.com/torrentpier/torrentpier-lts/pull/277) ([belomaxorka](https://github.com/belomaxorka))
|
||||
- Added missing !defined('BB_ROOT') check [\#274](https://github.com/torrentpier/torrentpier-lts/pull/274) ([belomaxorka](https://github.com/belomaxorka))
|
||||
- Exclude padding files [\#260](https://github.com/torrentpier/torrentpier-lts/pull/260) ([belomaxorka](https://github.com/belomaxorka), [kovalensky](https://github.com/kovalensky))
|
||||
- Added missing translation in admin_ug_auth [\#254](https://github.com/torrentpier/torrentpier-lts/pull/254) ([belomaxorka](https://github.com/belomaxorka))
|
||||
|
@ -17,7 +17,13 @@ ajax.callback.posts = function(data) {
|
||||
<option style="font-family: sans-serif" value="sans-serif"> Sans Serif</option>
|
||||
<option style="font-family: cursive" value="cursive"> Cursive</option>
|
||||
<option style="font-family: Arial" value="Arial"> Arial</option>
|
||||
<option style="font-family: Arial Black" value="Arial Black"> Arial Black</option>
|
||||
<option style="font-family: Times New Roman" value="Times New Roman"> Times New Roman</option>
|
||||
<option style="font-family: Tahoma" value="Tahoma"> Tahoma</option>
|
||||
<option style="font-family: Courier" value="Courier"> Courier</option>
|
||||
<option style="font-family: Bookman Old Style" value="Bookman Old Style"> Bookman</option>
|
||||
<option style="font-family: Trebuchet MS" value="Trebuchet MS"> Trebuchet</option>
|
||||
<option style="font-family: Garamond" value="Garamond"> Garamond</option>
|
||||
<option style="font-family: Georgia" value="Georgia"> Georgia</option>
|
||||
<option style="font-family: Fixedsys" value="Fixedsys"> Fixedsys</option>
|
||||
</select>
|
||||
@ -51,6 +57,8 @@ ajax.callback.posts = function(data) {
|
||||
<option value="20"> size=20</option>
|
||||
<option value="22"> size=22</option>
|
||||
<option value="24" class="em">{L_FONT_HUGE}</option>
|
||||
<option value="26"> size=26</option>
|
||||
<option value="28"> size=28</option>
|
||||
</select>
|
||||
|
||||
<select name="codeAlign" class="text_size">
|
||||
@ -198,4 +206,4 @@ bbcode.addTag("codeColor", function(e) { var v=e.value; e.selectedIndex=0; retur
|
||||
bbcode.addTag("codeSize", function(e) { var v=e.value; e.selectedIndex=0; return "size="+v }, "/size");
|
||||
bbcode.addTag("codeAlign", function(e) { var v=e.value; e.selectedIndex=0; return "align="+v }, "/align");
|
||||
</script>
|
||||
<!-- ENDIF -->
|
||||
<!-- ENDIF -->
|
||||
|
Loading…
Reference in New Issue
Block a user