Skip to content

Commit 55921ea

Browse files
committed
v1.2.1 files
1 parent 550196e commit 55921ea

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

core/FilesDataLayer.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ public static function getFilePath( $rel_file = null )
9191
{
9292
if ( is_null($rel_file) ) $rel_file = Settings::getDataSourceThemeFile();
9393

94-
return get_stylesheet_directory() . '/' . ltrim($rel_file, '/');
94+
$file_path = get_stylesheet_directory() . '/' . ltrim($rel_file, '/');
95+
$file_path = apply_filters('jtmce_config_file_path', $file_path);
96+
97+
return $file_path;
9598
}
9699
}

just-tiny-mce-styles.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Just TinyMCE Custom Styles
44
Description: Adds dropdown options for custom css classes and attributes for tags in WordPress TinyMCE Editor
55
Tags: tinymce, editor, link class, custom styles, styles, tag class, link attributes, tag attributes, custom editor
6-
Version: 1.2
6+
Version: 1.2.1
77
Author: JustCoded / Alex Prokopenko
88
Author URI: http://justcoded.com/
99
License: GPL2

0 commit comments

Comments
 (0)