Skip to content

Commit 349e1c4

Browse files
committed
Add text-wrap fallback and prep 2.1
1 parent 3436afe commit 349e1c4

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

html-api-debugger/html-api-debugger.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: HTML API Debugger
44
* Plugin URI: https://github.com/sirreal/html-api-debugger
55
* Description: Add a page to wp-admin for debugging the HTML API.
6-
* Version: 2.0
6+
* Version: 2.1
77
* Requires at least: 6.6
88
* Tested up to: 6.7
99
* Author: Jon Surrell
@@ -22,7 +22,7 @@
2222
require_once __DIR__ . '/html-api-integration.php';
2323

2424
const SLUG = 'html-api-debugger';
25-
const VERSION = '2.0';
25+
const VERSION = '2.1';
2626

2727
/** Set up the plugin. */
2828
function init() {

html-api-debugger/readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ Contributors: jonsurrell
33
Tags: HTML API, development, debug
44
Requires at least: 6.6
55
Tested up to: 6.7
6-
Stable tag: 2.0
6+
Stable tag: 2.1
77
License: GPLv2 or later
88
License URI: https://www.gnu.org/licenses/gpl-2.0.html
99

1010
Add a page to wp-admin for debugging the HTML API.
1111

1212
== Changelog ==
1313

14+
= 2.1 =
15+
* Add text-wrap styling fallback for unsupported browsers.
16+
1417
= 2.0 =
1518
* Add ability to replay token processing.
1619
* Fix quirks mode fragment parsing.

html-api-debugger/style.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
outline: 1px dotted #111;
7070
vertical-align: top;
7171
word-break: break-all;
72+
text-wrap: auto;
7273
text-wrap: pretty;
7374
}
7475

@@ -88,6 +89,7 @@
8889
}
8990

9091
.html-text {
92+
text-wrap: auto;
9193
text-wrap: pretty;
9294
box-shadow: 0 0 0 0 hotpink;
9395
transition: ease box-shadow 120ms;

0 commit comments

Comments
 (0)