From: Jagadedes Date: Wed, 12 Nov 2014 06:36:43 +0000 (+0530) Subject: fixed beta 1 bugs: 31058 removed more menu andd added directly in row X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=9e2703a270ebea8ecd7e4db413120c84b49fc544;p=com.zyxware.civiwci.git fixed beta 1 bugs: 31058 removed more menu andd added directly in row --- diff --git a/CRM/Wci/Form/CreateWidget.php b/CRM/Wci/Form/CreateWidget.php index 58fa128..f6f64b7 100644 --- a/CRM/Wci/Form/CreateWidget.php +++ b/CRM/Wci/Form/CreateWidget.php @@ -109,7 +109,7 @@ class CRM_Wci_Form_CreateWidget extends CRM_Core_Form { $this->add('select', 'progress_bar', ts('Progress bar'), $this->getProgressBars()); $this->addWysiwyg('description', ts('Description'), ''); $this->add('select', 'email_signup_group_id', ts('Newsletter signup'), $this->getGroupOptions()); - $this->add('select', 'size_variant', ts('Size variant
Fixed width. Height depends on what contents selected.'), $this->getSizeOptions()); + $this->add('select', 'size_variant', ts('Size variant'), $this->getSizeOptions()); // $fieldset = $this->addElement('fieldset')->setLabel('Advanced Settings'); $this->add('checkbox', 'hide_title', ts('Hide Title')); $this->add('checkbox', 'hide_border', ts('Hide border')); diff --git a/CRM/Wci/Page/ManageEmbedCode.php b/CRM/Wci/Page/ManageEmbedCode.php index 5644274..d5b15a8 100644 --- a/CRM/Wci/Page/ManageEmbedCode.php +++ b/CRM/Wci/Page/ManageEmbedCode.php @@ -57,11 +57,7 @@ class CRM_Wci_Page_ManageEmbedCode extends CRM_Core_Page { $action = array_sum(array_keys($this->actionLinks())); //build the normal action links. $emb_code[$dao->id]['action'] = CRM_Core_Action::formLink(self::actionLinks(), - $action, - array('id' => $dao->id), - ts('more'), - TRUE - ); + $action, array('id' => $dao->id)); } if (isset($emb_code)) { diff --git a/CRM/Wci/Page/ProgressBarList.php b/CRM/Wci/Page/ProgressBarList.php index f0a220c..a0a33cd 100644 --- a/CRM/Wci/Page/ProgressBarList.php +++ b/CRM/Wci/Page/ProgressBarList.php @@ -58,11 +58,7 @@ class CRM_Wci_Page_ProgressBarList extends CRM_Core_Page { $action = array_sum(array_keys($this->actionLinks())); //build the normal action links. $con_page[$dao->id]['action'] = CRM_Core_Action::formLink(self::actionLinks(), - $action, - array('id' => $dao->id), - ts('more'), - TRUE - ); + $action, array('id' => $dao->id)); } if (isset($con_page)) { diff --git a/CRM/Wci/Page/WidgetList.php b/CRM/Wci/Page/WidgetList.php index f2277fa..3335b83 100644 --- a/CRM/Wci/Page/WidgetList.php +++ b/CRM/Wci/Page/WidgetList.php @@ -57,11 +57,7 @@ class CRM_Wci_Page_WidgetList extends CRM_Core_Page { $action = array_sum(array_keys($this->actionLinks())); //build the normal action links. $wid_page[$dao->id]['action'] = CRM_Core_Action::formLink(self::actionLinks(), - $action, - array('id' => $dao->id), - ts('more'), - TRUE - ); + $action, array('id' => $dao->id)); } if (isset($wid_page)) { diff --git a/createwidget.js b/createwidget.js index 9af6254..29b9fa3 100644 --- a/createwidget.js +++ b/createwidget.js @@ -15,6 +15,8 @@ cj(function ( $ ) { $('#image').after(''); $('#logo_image').after(''); + $('#email_signup_group_id').after(""); + $('#size_variant').after(""); } $(document).ready(setState)