Skip to content
This repository was archived by the owner on Nov 21, 2017. It is now read-only.

Commit d27ade1

Browse files
committed
Update to 2.0.4
- CustomTV: Bugfix for Add button in datatable mode - CustomTV: Update EasyTabs script to solve anchor issues. - Snippet: Bugfix for UpdateTV snippet
1 parent 7190b9b commit d27ade1

9 files changed

+27
-20
lines changed

HISTORY.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
History
22
================================================================================
3+
- 2.0.4 December 12, 2014
4+
- CustomTV: Bugfix for Add button in datatable mode
5+
- CustomTV: Update EasyTabs script to solve anchor issues.
6+
- Snippet: Bugfix for UpdateTV snippet
7+
38
- 2.0.3 November 18, 2014
49
- Snippet: `where` parameter
510

assets/tvs/multitv/js/jquery-easytabs-3.2.0.min.js

-12
This file was deleted.

assets/tvs/multitv/js/jquery-easytabs-3.2.0b.min.js

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/tvs/multitv/js/multitv.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,9 @@
889889
$('.formtabradio:first', _this.fieldEditForm).addClass('active').find('input[type="radio"]').prop('checked', true);
890890
_this.editBoxOpen(mode);
891891
}
892-
if (_this.options.mode == 'dbtable') {
892+
if (_this.options.mode != 'dbtable') {
893+
_this.editBoxOpen(mode);
894+
} else {
893895
$.ajax({
894896
dataType: 'json',
895897
type: 'POST',

assets/tvs/multitv/settings/datatable.setting.inc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
$settings['scripts'] = array(
99
'js/jquery-colorbox-1.4.33.min.js',
1010
'js/jquery-dataTables-1.9.4.min.js',
11-
'js/jquery-easytabs-3.2.0.min.js',
11+
'js/jquery-easytabs-3.2.0b.min.js',
1212
'js/jquery-dataTables.rowReordering-1.1.0.js',
1313
'js/jquery-contextMenu-1.7.js'
1414
);

0 commit comments

Comments
 (0)