Plugin Directory

Changeset 3399591


Ignore:
Timestamp:
11/20/2025 10:14:19 AM (4 months ago)
Author:
aryans
Message:
  • Optimized loading time
  • Fixed missing video
Location:
media-stream
Files:
21 added
3 edited

Legend:

Unmodified
Added
Removed
  • media-stream/trunk/assets/js/script.js

    r3393684 r3399591  
    200200            }
    201201        }, 500);
    202         if(typeof wp != 'undefined'){
     202        if(typeof wp != 'undefined' && typeof wp.media != 'undefined'){
    203203            wp.media.view.Attachment.Library.prototype.render = (function (original) {
    204204                return function () {
     
    262262    });
    263263}
    264 window.cstm_call_all_scrip();
     264
     265 jQuery(window).on('load', function() {
     266    window.cstm_call_all_scrip();
     267});
     268
     269jQuery(document).ready(function() {
     270    setTimeout(function(){
     271        window.cstm_call_all_scrip();
     272    }, 1000);
     273});
  • media-stream/trunk/media-stream.php

    r3393684 r3399591  
    66 * Author: Blurr Studio
    77 * Author URI: https://blurr.it/
    8  * Version: 1.0.7
     8 * Version: 1.0.8
    99 * License: GPL v2 or later
    1010 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6060                array(
    6161                    'in_footer' => true,
    62                     'strategy' => 'async',
     62                    'strategy' => 'defer',
    6363                )
    6464            );
     
    7272                array(
    7373                    'in_footer' => true,
    74                     'strategy' => 'async',
     74                    'strategy' => 'defer',
    7575                )
    7676            );
     
    9191                array(
    9292                    'in_footer' => true,
    93                     'strategy' => 'async',
     93                    'strategy' => 'defer',
    9494                )
    9595            );
     
    103103                array(
    104104                    'in_footer' => true,
    105                     'strategy' => 'async',
     105                    'strategy' => 'defer',
    106106                )
    107107            );
  • media-stream/trunk/readme.txt

    r3393684 r3399591  
    44Tested up to:      6.8
    55Requires PHP:      7.2
    6 Stable tag:        1.0.7
     6Stable tag:        1.0.8
    77License:           GPLv2 or later
    88Contributors:      aryans
     
    6060== Changelog ==
    6161
     62= 1.0.8 =
     63* Optimized loading time
     64* Fixed missing video
     65
    6266= 1.0.7 =
    6367* Optimized loading inside builders
Note: See TracChangeset for help on using the changeset viewer.