Skip to content

Commit

Permalink
fixed export import, and minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kawshar committed Dec 10, 2021
1 parent caa1367 commit 9802780
Show file tree
Hide file tree
Showing 8 changed files with 978 additions and 54 deletions.
2 changes: 1 addition & 1 deletion plugins/system/helix3/assets/js/admin.general.j4.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jQuery(function ($) {

var $that = $(this),
template_id = $that.data("template_id"),
temp_settings = $.trim($that.prev().val());
temp_settings = $.trim($("#import-data").val());

if (temp_settings == "") {
return false;
Expand Down
2 changes: 1 addition & 1 deletion plugins/system/helix3/assets/js/admin.general.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jQuery(function ($) {

var $that = $(this),
template_id = $that.data("template_id"),
temp_settings = $.trim($that.prev().val());
temp_settings = $.trim($("#import-data").val());

if (temp_settings == "") {
return false;
Expand Down
Loading

0 comments on commit 9802780

Please sign in to comment.