Changeset 952584
- Timestamp:
- 07/22/2014 04:39:58 AM (12 years ago)
- Location:
- wp-emmet/trunk
- Files:
-
- 2 edited
-
WP/Emmet.php (modified) (2 diffs)
-
wp-emmet.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-emmet/trunk/WP/Emmet.php
r916205 r952584 107 107 $screen = get_current_screen(); 108 108 $type = "scope.{$screen->base}"; 109 $isInScope = true; 109 110 110 111 if ($screen->base === 'settings_page_' . WP_EMMET_DOMAIN) { 111 return true;112 return apply_filters('wp_emmet_is_in_scope', $isInScope); 112 113 } 113 114 … … 116 117 } 117 118 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); 119 122 } 120 123 -
wp-emmet/trunk/wp-emmet.php
r916205 r952584 4 4 Plugin URI: https://github.com/rewish/wp-emmet 5 5 Description: Emmet (ex-Zen Coding) for WordPress. 6 Version: 0.2. 56 Version: 0.2.6 7 7 Author: rewish 8 8 Author URI: https://github.com/rewish
Note: See TracChangeset
for help on using the changeset viewer.