Plugin Directory

Changeset 952584


Ignore:
Timestamp:
07/22/2014 04:39:58 AM (12 years ago)
Author:
rewish
Message:

Version 0.2.6 Released!

Location:
wp-emmet/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-emmet/trunk/WP/Emmet.php

    r916205 r952584  
    107107        $screen = get_current_screen();
    108108        $type = "scope.{$screen->base}";
     109        $isInScope = true;
    109110
    110111        if ($screen->base === 'settings_page_' . WP_EMMET_DOMAIN) {
    111             return true;
     112            return apply_filters('wp_emmet_is_in_scope', $isInScope);
    112113        }
    113114
     
    116117        }
    117118
    118         return $this->Options->get($type) === '1';
     119        $isInScope = $this->Options->get($type) === '1';
     120
     121        return apply_filters('wp_emmet_is_in_scope', $isInScope);
    119122    }
    120123
  • wp-emmet/trunk/wp-emmet.php

    r916205 r952584  
    44Plugin URI: https://github.com/rewish/wp-emmet
    55Description: Emmet (ex-Zen Coding) for WordPress.
    6 Version: 0.2.5
     6Version: 0.2.6
    77Author: rewish
    88Author URI: https://github.com/rewish
Note: See TracChangeset for help on using the changeset viewer.