Changeset 2075589
- Timestamp:
- 04/26/2019 08:15:49 PM (7 years ago)
- Location:
- digiwidgets-image-editor/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
digiwidgets-image-editor.php (modified) (2 diffs)
-
digiwidgets/fabricJS.css (modified) (1 diff)
-
digiwidgets/libs/dwwpEditorFunctions.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
digiwidgets-image-editor/trunk/README.txt
r1491207 r2075589 3 3 Tags: image editor, templates, editor, image, crop, resize 4 4 Requires at least: 3.6 5 Tested up to: 4.65 Tested up to: 5.1.1 6 6 Stable tag: trunk 7 7 License: GPLv2 -
digiwidgets-image-editor/trunk/digiwidgets-image-editor.php
r1446641 r2075589 48 48 { 49 49 //update post to refresh timer if an updated version is being activated. 50 $wpdb->update($wpdb->posts,$my_post,array('post_status' => '_n59t_dwwp'),array('%s','% lf','%s','%d','%s','%s'),array('%s'));50 $wpdb->update($wpdb->posts,$my_post,array('post_status' => '_n59t_dwwp'),array('%s','%f','%s','%d','%s','%s'),array('%s')); 51 51 } 52 52 } … … 55 55 { 56 56 // set path to be the directory where the image editor is stored 57 $this->version_DWWP = 1. 09;57 $this->version_DWWP = 1.10; 58 58 $this->path = plugins_url('digiwidgets', __FILE__); 59 59 $_SESSION['path'] = $this->path; -
digiwidgets-image-editor/trunk/digiwidgets/fabricJS.css
r1424242 r2075589 1385 1385 box-shadow: none !important; 1386 1386 } 1387 1388 .col_project_thumbnail.column-col_project_thumbnail > div > img { height:100%; } -
digiwidgets-image-editor/trunk/digiwidgets/libs/dwwpEditorFunctions.js
r1446641 r2075589 918 918 useTimestampChange = false; 919 919 } 920 commandHistory.push(canvasJSON); 921 commandHistory.clean(""); 920 if(commandHistory) { 921 commandHistory.push(canvasJSON); 922 commandHistory.clean(""); 923 } 924 else { 925 console.log("CommandHistory not found while "+ action); 926 commandHistory = []; 927 commandHistory.push(canvasJSON); 928 commandHistory.clean(""); 929 } 922 930 }; 923 931
Note: See TracChangeset
for help on using the changeset viewer.