Skip to content

Commit

Permalink
Fix in list.js for updateCals(), we were looking for wrong class for
Browse files Browse the repository at this point in the history
calculation cells, so calculations wouldn't update after an AJAX
nav/filter.
  • Loading branch information
cheesegrits committed Oct 26, 2014
1 parent 72aa3d1 commit caff8c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media/com_fabrik/js/list.js
Expand Up @@ -1240,7 +1240,7 @@ var FbList = new Class({
this.form.getElements('.fabrik_calculations').each(function (c) {
types.each(function (type) {
$H(json[type]).each(function (val, key) {
var target = c.getElement('.fabrik_row___' + key);
var target = c.getElement('.' + key);
if (typeOf(target) !== 'null') {
target.set('html', val);
}
Expand Down

0 comments on commit caff8c1

Please sign in to comment.