Skip to content

Commit

Permalink
v1.2.1 files
Browse files Browse the repository at this point in the history
  • Loading branch information
aprokopenko committed Aug 14, 2020
1 parent 550196e commit 55921ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion core/FilesDataLayer.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ public static function getFilePath( $rel_file = null )
{
if ( is_null($rel_file) ) $rel_file = Settings::getDataSourceThemeFile();

return get_stylesheet_directory() . '/' . ltrim($rel_file, '/');
$file_path = get_stylesheet_directory() . '/' . ltrim($rel_file, '/');
$file_path = apply_filters('jtmce_config_file_path', $file_path);

return $file_path;
}
}
2 changes: 1 addition & 1 deletion just-tiny-mce-styles.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Just TinyMCE Custom Styles
Description: Adds dropdown options for custom css classes and attributes for tags in WordPress TinyMCE Editor
Tags: tinymce, editor, link class, custom styles, styles, tag class, link attributes, tag attributes, custom editor
Version: 1.2
Version: 1.2.1
Author: JustCoded / Alex Prokopenko
Author URI: http://justcoded.com/
License: GPL2
Expand Down

0 comments on commit 55921ea

Please sign in to comment.