Skip to content

Commit

Permalink
Version 1.4.16
Browse files Browse the repository at this point in the history
  • Loading branch information
themefuse committed Nov 17, 2014
1 parent d108648 commit 157608c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@
'label' => __('Addable Popup', 'fw'),
'type' => 'addable-popup',
'desc' => __('Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 'fw'),
'template' => '{{=demo_text}}',
'template' => '{{- demo_text }}',
'popup-options' => array(
'demo_text' => array(
'label' => __('Text', 'fw'),
Expand Down Expand Up @@ -587,7 +587,7 @@
'label' => __('Addable Popup', 'fw'),
'type' => 'addable-popup',
'desc' => __('Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 'fw'),
'template' => 'Title color-picker value : {{=demo_color_picker}}',
'template' => 'Title color-picker value : {{- demo_color_picker }}',
'popup-options' => array(
'demo_multi_upload_images' => array(
'label' => __('Multi Upload (images only)', 'fw'),
Expand Down Expand Up @@ -659,7 +659,7 @@
),
),
),
'template' => '{{=demo_text}}',
'template' => '{{- demo_text }}',
),
'demo_group_2' => array(
'type' => 'group',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@
'label' => __('Addable Popup', 'fw'),
'type' => 'addable-popup',
'desc' => __('Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 'fw'),
'template' => '{{=demo_text}}',
'template' => '{{- demo_text }}',
'popup-options' => array(
'demo_text' => array(
'label' => __('Text', 'fw'),
Expand Down Expand Up @@ -585,7 +585,7 @@
'label' => __('Addable Popup', 'fw'),
'type' => 'addable-popup',
'desc' => __('Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 'fw'),
'template' => 'Title color-picker value : {{=demo_color_picker}}',
'template' => 'Title color-picker value : {{- demo_color_picker }}',
'popup-options' => array(
'demo_multi_upload_images' => array(
'label' => __('Multi Upload (images only)', 'fw'),
Expand Down Expand Up @@ -657,7 +657,7 @@
),
),
),
'template' => '{{=demo_text}}',
'template' => '{{- demo_text }}',
'limit' => 3,
),
'demo_group' => array(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@
'label' => __('Addable Popup', 'fw'),
'type' => 'addable-popup',
'desc' => __('Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 'fw'),
'template' => '{{=demo_text}}',
'template' => '{{- demo_text }}',
'popup-options' => array(
'demo_text' => array(
'label' => __('Text', 'fw'),
Expand Down Expand Up @@ -583,7 +583,7 @@
'label' => __('Addable Popup', 'fw'),
'type' => 'addable-popup',
'desc' => __('Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 'fw'),
'template' => 'Title color-picker value : {{=demo_color_picker}}',
'template' => 'Title color-picker value : {{- demo_color_picker }}',
'popup-options' => array(
'demo_multi_upload_images' => array(
'label' => __('Multi Upload (images only)', 'fw'),
Expand Down Expand Up @@ -655,7 +655,7 @@
),
),
),
'template' => '{{=demo_text}}',
'template' => '{{- demo_text }}',
'limit' => 3,
),
);
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jQuery(document).ready(function ($) {

$box.removeClass(titleUpdater.pendingClass);

$box.find('> h3.hndle span:not([class])').first().text(
$box.find('> h3.hndle span:not([class])').first().html(
this.template(data.template, JSON.parse(values))
);

Expand Down Expand Up @@ -192,7 +192,7 @@ jQuery(document).ready(function ($) {
template = '[Ajax Error] '+ response.data.message
}

$box.find('> h3.hndle span:not([class])').first().text(template);
$box.find('> h3.hndle span:not([class])').first().html(template);

delete data;

Expand Down
2 changes: 1 addition & 1 deletion scratch-parent/framework/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

$manifest['name'] = __('Unyson', 'fw');

$manifest['version'] = '1.4.15';
$manifest['version'] = '1.4.16';

$manifest['github_update'] = 'ThemeFuse/Unyson-Framework';

0 comments on commit 157608c

Please sign in to comment.