Changeset 3413658
- Timestamp:
- 12/07/2025 06:24:46 PM (4 months ago)
- Location:
- reword/branches/refactor-notify-banner
- Files:
-
- 4 edited
-
class/class-reword-plugin.php (modified) (3 diffs)
-
class/class-reword-reports-table.php (modified) (1 diff)
-
public/css/reword-public.css (modified) (2 diffs)
-
public/js/reword-public.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
reword/branches/refactor-notify-banner/class/class-reword-plugin.php
r3396275 r3413658 270 270 $enable_update_button = (!empty($update_plugins) && (isset($update_plugins[REWORD_PLUGIN_BASENAME]))); 271 271 // Show page 272 include (REWORD_ADMIN_DIR . '/php/reword-help.php');272 include_once REWORD_ADMIN_DIR . '/php/reword-help.php'; 273 273 } 274 274 … … 513 513 $ret_msg = 'Database error. Please try again later...'; 514 514 } 515 } else if ($reports_ids = $this->reword_fetch_data('id')) {515 } elseif ($reports_ids = $this->reword_fetch_data('id')) { 516 516 // Handle action on checked reports, or a specific report 517 517 if ('delete' === $action) { … … 525 525 } 526 526 } 527 } else if ('ignore' === $action) {527 } elseif ('ignore' === $action) { 528 528 // Ignore reports 529 529 foreach ($reports_ids as $report_id) { -
reword/branches/refactor-notify-banner/class/class-reword-reports-table.php
r3396290 r3413658 31 31 * @param string $type 32 32 */ 33 function __construct($type)33 public function __construct($type) 34 34 { 35 35 // Set parent defaults -
reword/branches/refactor-notify-banner/public/css/reword-public.css
r3396269 r3413658 23 23 color: #fff; 24 24 /* White */ 25 background: # ff0000;26 /* Red */25 background: #cc0000; 26 /* Darker Red */ 27 27 -webkit-transition: all 0.5s; 28 28 -moz-transition: all 0.5s; … … 33 33 34 34 .reword-icon-inactive { 35 color: #000; 36 /* Black */ 37 background: rgba(0, 0, 0, 0.36); 35 color: #fff; 36 background: rgba(0, 0, 0, 0.3); 38 37 -webkit-transition: all 0.5s; 39 38 -moz-transition: all 0.5s; -
reword/branches/refactor-notify-banner/public/js/reword-public.js
r3396275 r3413658 180 180 */ 181 181 function rewordGetFullText(rewordRange) { 182 if ( null !==rewordRange) {182 if (rewordRange) { 183 183 // Check trimmed white spaces 184 184 const selectedText = rewordRange.toString(); … … 204 204 */ 205 205 function rewordGetURL(rewordRange) { 206 if ( null !==rewordRange) {206 if (rewordRange) { 207 207 // Get element ID, or closest parent ID (if any) 208 208 let textElementDataTmp = rewordRange.commonAncestorContainer.parentElement;
Note: See TracChangeset
for help on using the changeset viewer.