Changeset 2315767
- Timestamp:
- 06/01/2020 10:59:23 AM (6 years ago)
- Location:
- global-custom-fields
- Files:
-
- 15 added
- 2 edited
-
tags/1.2 (added)
-
tags/1.2/GCF.php (added)
-
tags/1.2/assets (added)
-
tags/1.2/assets/functions.php (added)
-
tags/1.2/css (added)
-
tags/1.2/css/style.css (added)
-
tags/1.2/js (added)
-
tags/1.2/js/scripts.js (added)
-
tags/1.2/readme.txt (added)
-
tags/1.2/uninstall.php (added)
-
tags/1.2/views (added)
-
tags/1.2/views/Fields.php (added)
-
tags/1.2/views/GlobalCF.php (added)
-
tags/1.2/views/Options.php (added)
-
tags/1.2/views/Settings.php (added)
-
trunk/js/scripts.js (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
global-custom-fields/trunk/js/scripts.js
r2315713 r2315767 23 23 // Codemirror editors init 24 24 $('.gcf-group-content[data-show="'+show+'"]:not(:has(.CodeMirror)) .codemirror-textarea').each(function() { 25 // var cm_editor_settings = cm_settings.codeEditor.codemirror; 26 wp.codeEditor.initialize($(this), cm_settings); 25 var editorSettings = wp.codeEditor.defaultSettings; 26 editorSettings.codemirror.lint = false; 27 wp.codeEditor.initialize($(this), editorSettings); 27 28 }); 28 29 }); -
global-custom-fields/trunk/readme.txt
r2315713 r2315767 25 25 N.B. Use php "eval" only if you know what you're doing. Save php fields using pseudo tags `[php] ... [/php]` 26 26 27 For info and development suggestions write a mail to info@tommasomeli.it 28 27 29 == Installation == 28 30 … … 31 33 3. Set up the plugin from GCF Admin Page 32 34 4. Use `get_gcf()` php function or `[gcf]` shortcode to add GCF anywhere! (see more in the 'Description' section) 35 36 For info and development suggestions write a mail to info@tommasomeli.it 33 37 34 38 == Screenshots == … … 41 45 == Changelog == 42 46 47 = 1.2 (2th June,2020) = 48 49 * remove warnings from fields editor 50 43 51 = 1.1 (1th June,2020) = 44 52
Note: See TracChangeset
for help on using the changeset viewer.