Plugin Directory

Changeset 2272865


Ignore:
Timestamp:
04/01/2020 12:37:47 PM (6 years ago)
Author:
lenford18
Message:

Tested with WordPress 5.4

Location:
xtrad-viewer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • xtrad-viewer/tags/1.3.1/readme.txt

    r2207276 r2272865  
    44Tags: 3D Slider, 3D Scene, three.js, .obj, .mtl, 3D Viewer, WebGL, Slider, 3D Model Viewer
    55Requires at least: 4.9
    6 Tested up to: 5.3
     6Tested up to: 5.4
    77Stable tag: 1.3.1
    88Requires PHP: 5.6
  • xtrad-viewer/trunk/public/partials/xtrad-viewer-public-display.php

    r2207275 r2272865  
    7777                $orbit = array(
    7878                    'orbit' => $atts['orbit'],
    79                     'minPolarAngle' => array_key_exists('minpolarangle') ? $atts['minpolarangle'] : null,
    80                     'maxPolarAngle' => array_key_exists('maxpolarangle') != null ? $atts['maxpolarangle'] : null,
    81                     'minAzimuthAngle' => array_key_exists('minazimuthangle') != null ? $atts['minazimuthangle'] : null,
    82                     'maxAzimuthAngle' => array_key_exists('maxazimuthangle')  != null ? $atts['maxazimuthangle'] : null,
    83                     'minDistance' => array_key_exists('mindistance')  != null ? $atts['mindistance'] : null,
    84                     'maxDistance' => array_key_exists('maxdistance')  != null ? $atts['maxdistance'] : null
     79                    'minPolarAngle' => array_key_exists('minpolarangle', $atts) ? $atts['minpolarangle'] : null,
     80                    'maxPolarAngle' => array_key_exists('maxpolarangle', $atts) != null ? $atts['maxpolarangle'] : null,
     81                    'minAzimuthAngle' => array_key_exists('minazimuthangle', $atts) != null ? $atts['minazimuthangle'] : null,
     82                    'maxAzimuthAngle' => array_key_exists('maxazimuthangle', $atts)  != null ? $atts['maxazimuthangle'] : null,
     83                    'minDistance' => array_key_exists('mindistance', $atts)  != null ? $atts['mindistance'] : null,
     84                    'maxDistance' => array_key_exists('maxdistance', $atts)  != null ? $atts['maxdistance'] : null
    8585                );
    8686            }
Note: See TracChangeset for help on using the changeset viewer.