Changeset 1897498
- Timestamp:
- 06/23/2018 05:09:52 AM (8 years ago)
- Location:
- code-editor-and-compiler/trunk
- Files:
-
- 5 edited
-
admin/compilebin-admin.php (modified) (1 diff)
-
compilebin.php (modified) (1 diff)
-
public/compilebin-public.php (modified) (1 diff)
-
public/js/editor-handler-public.js (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
code-editor-and-compiler/trunk/admin/compilebin-admin.php
r1895982 r1897498 7 7 public function __construct() { 8 8 $this->plugin_name = "code-editor-and-compiler"; 9 $this->plugin_version = "1.2. 3";9 $this->plugin_version = "1.2.4"; 10 10 add_action('admin_enqueue_scripts', array(&$this, 'enqueueScripts')); 11 11 add_action('admin_enqueue_scripts', array(&$this, 'enqueueStyles')); -
code-editor-and-compiler/trunk/compilebin.php
r1895982 r1897498 10 10 * Plugin URI: https://www.compilebin.com 11 11 * Description: Execute code online. 12 * Version: 1.2. 312 * Version: 1.2.4 13 13 * Author: Compilebin 14 14 * Author URI: https://www.compilebin.com/about -
code-editor-and-compiler/trunk/public/compilebin-public.php
r1895982 r1897498 7 7 public function __construct() { 8 8 $this->plugin_name = "code-editor-and-compiler"; 9 $this->plugin_version = "1.2. 3";9 $this->plugin_version = "1.2.4"; 10 10 add_action('wp_enqueue_scripts', array(&$this, 'enqueueScripts')); 11 11 add_action('wp_enqueue_scripts', array(&$this, 'enqueueStyles')); -
code-editor-and-compiler/trunk/public/js/editor-handler-public.js
r1893890 r1897498 277 277 278 278 var elemId = this.id; 279 var htmlCode = document.getElementById(cdbx_reverseId(elemId) + 'html').innerHTML; 280 var cssCode = document.getElementById(cdbx_reverseId(elemId) + 'css').innerHTML; 281 var jsCode = document.getElementById(cdbx_reverseId(elemId) + 'js').innerHTML; 279 var htmlCode = ''; 280 var cssCode = ''; 281 var jsCode = ''; 282 var htmlElemDiv = document.getElementById(cdbx_reverseId(elemId) + 'html'); 283 var cssElemDiv = document.getElementById(cdbx_reverseId(elemId) + 'css'); 284 var jsElemDiv = document.getElementById(cdbx_reverseId(elemId) + 'js'); 285 if (htmlElemDiv) htmlCode = htmlElemDiv.innerHTML; 286 if (cssElemDiv) cssCode = cssElemDiv.innerHTML; 287 if (jsElemDiv) jsCode = jsElemDiv.innerHTML; 282 288 283 289 $(CDBX_HIDDEN_CONTENT_HTML).html(htmlCode); -
code-editor-and-compiler/trunk/readme.txt
r1895982 r1897498 5 5 Requires at least: 3.1 6 6 Tested up to: 4.9.4 7 Stable tag: 1.2. 37 Stable tag: 1.2.4 8 8 Requires PHP: 5.2.4 9 9 License: GPLv2 or later … … 35 35 36 36 == Changelog == 37 1.2.4 38 Fixed display issue for web design code snippets. 39 37 40 1.2.3 38 41 Resolved notices thrown in wp_debug mode.
Note: See TracChangeset
for help on using the changeset viewer.