Changeset 3014326
- Timestamp:
- 12/26/2023 11:48:46 AM (2 years ago)
- Location:
- nativerent/trunk
- Files:
-
- 4 edited
-
nativerent-bootstrap.php (modified) (1 diff)
-
nativerent.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
static/content.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
nativerent/trunk/nativerent-bootstrap.php
r3014091 r3014326 43 43 // Plugin version. 44 44 if ( ! defined( 'NATIVERENT_PLUGIN_VERSION' ) ) { 45 define( 'NATIVERENT_PLUGIN_VERSION', '1.9. 0' );45 define( 'NATIVERENT_PLUGIN_VERSION', '1.9.1' ); 46 46 } 47 47 -
nativerent/trunk/nativerent.php
r3014091 r3014326 6 6 * Plugin URI: https://wordpress.org/plugins/nativerent/ 7 7 * Description: Релевантная реклама для ваших читателей. Рекламодатели сервиса платят в 2-3 раза больше за 1 тыс. показов страниц, чем привычные рекламные сетки. Страница выкупается полностью, на ней размещается максимум четыре рекламных блока, которые выглядят нативно в стиле сайта. 8 * Version: 1.9. 08 * Version: 1.9.1 9 9 * Requires at least: 4.9 10 10 * Tested up to: 6.4.2 -
nativerent/trunk/readme.txt
r3014091 r3014326 7 7 Tested up to: 6.4.2 8 8 Requires PHP: 5.6.20 9 Stable tag: 1.9. 09 Stable tag: 1.9.1 10 10 License: GPLv2 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
nativerent/trunk/static/content.js
r3014091 r3014326 219 219 */ 220 220 function checkDistanceOfGroupUnits(unitsMap, insertedUnits, minDistance) { 221 if (unitsMap.length === undefined || unitsMap.length < 2) { 221 var ids = Object.keys(unitsMap) 222 if (ids.length < 2) { 222 223 return 223 224 } 224 var selector = Object.keys(unitsMap)225 var selector = ids 225 226 .map(function (id) { 226 227 return '#' + id
Note: See TracChangeset
for help on using the changeset viewer.