Changeset 2128456
- Timestamp:
- 07/25/2019 11:18:14 AM (7 years ago)
- Location:
- bazo
- Files:
-
- 4 edited
-
branches/readme.txt (modified) (2 diffs)
-
branches/wp-bazo.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-bazo.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bazo/branches/readme.txt
r2128452 r2128456 6 6 Tested up to: 5.2 7 7 Requires PHP: 5.6 8 Stable tag: 1.3. 19 Version: 1.3. 18 Stable tag: 1.3.2 9 Version: 1.3.2 10 10 Contributors: Bazo 11 11 … … 35 35 36 36 == Changelog == 37 38 = 1.3.2 = 39 * Fix use suffix and lowernext together 40 37 41 38 42 = 1.3.1 = -
bazo/branches/wp-bazo.php
r2128452 r2128456 2 2 /* 3 3 Plugin Name: Bazo 4 Version: 1.3. 14 Version: 1.3.2 5 5 Description: Automatically adds Bazo.io tracker to site 6 6 Author: Bazo … … 244 244 })(document, 'script', '//c.bazo.io/t.min.js'); 245 245 </script> 246 <!-- END Bazo Tracker v.1.3. 1-->246 <!-- END Bazo Tracker v.1.3.2 --> 247 247 <?php } 248 248 } … … 318 318 } 319 319 if (length < company.length) { 320 elems[i].innerHTML = company.substring(0, length) + '... ';321 company = company.substring(0, length) + '... ';320 elems[i].innerHTML = company.substring(0, length) + '...</span>'; 321 company = company.substring(0, length) + '...</span>'; 322 322 } else { 323 elems[i].innerHTML = company ;324 company = elems[i].innerHTML ;323 elems[i].innerHTML = company + '</span>'; 324 company = elems[i].innerHTML + '</span>'; 325 325 } 326 326 let parentNode = elems[i].parentNode.innerHTML; … … 333 333 } 334 334 if (prefix.length > 0) { 335 var companySpan = prefix + ' <span style="color:' + color + '">' + company + '</span>';335 var companySpan = prefix + ' <span style="color:' + color + '">' + company; 336 336 } else { 337 companySpan = '<span style="color:' + color + '">' + company + '</span>';337 companySpan = '<span style="color:' + color + '">' + company; 338 338 } 339 339 if (suffix.length > 0){ -
bazo/trunk/readme.txt
r2128452 r2128456 6 6 Tested up to: 5.2 7 7 Requires PHP: 5.6 8 Stable tag: 1.3. 19 Version: 1.3. 18 Stable tag: 1.3.2 9 Version: 1.3.2 10 10 Contributors: Bazo 11 11 … … 35 35 36 36 == Changelog == 37 38 = 1.3.2 = 39 * Fix use suffix and lowernext together 40 37 41 38 42 = 1.3.1 = -
bazo/trunk/wp-bazo.php
r2128452 r2128456 2 2 /* 3 3 Plugin Name: Bazo 4 Version: 1.3. 14 Version: 1.3.2 5 5 Description: Automatically adds Bazo.io tracker to site 6 6 Author: Bazo … … 244 244 })(document, 'script', '//c.bazo.io/t.min.js'); 245 245 </script> 246 <!-- END Bazo Tracker v.1.3. 1-->246 <!-- END Bazo Tracker v.1.3.2 --> 247 247 <?php } 248 248 } … … 318 318 } 319 319 if (length < company.length) { 320 elems[i].innerHTML = company.substring(0, length) + '... ';321 company = company.substring(0, length) + '... ';320 elems[i].innerHTML = company.substring(0, length) + '...</span>'; 321 company = company.substring(0, length) + '...</span>'; 322 322 } else { 323 elems[i].innerHTML = company ;324 company = elems[i].innerHTML ;323 elems[i].innerHTML = company + '</span>'; 324 company = elems[i].innerHTML + '</span>'; 325 325 } 326 326 let parentNode = elems[i].parentNode.innerHTML; … … 333 333 } 334 334 if (prefix.length > 0) { 335 var companySpan = prefix + ' <span style="color:' + color + '">' + company + '</span>';335 var companySpan = prefix + ' <span style="color:' + color + '">' + company; 336 336 } else { 337 companySpan = '<span style="color:' + color + '">' + company + '</span>';337 companySpan = '<span style="color:' + color + '">' + company; 338 338 } 339 339 if (suffix.length > 0){
Note: See TracChangeset
for help on using the changeset viewer.