Skip to content

Commit

Permalink
fixed: in j25 js error when editing element resulted in elements not …
Browse files Browse the repository at this point in the history
…being savable
  • Loading branch information
pollen8 committed Jan 7, 2014
1 parent dad3e69 commit 80ac9d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion administrator/components/com_fabrik/views/namespace-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion administrator/components/com_fabrik/views/namespace.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
var JTooltips = new Tips($$('.hasTip'), { maxTitleChars: 50, fixed: false});

// Joomla3.2
jQuery('.hasTooltip').tooltip({'html': true, 'container': 'body'});
if (typeof(jQuery) !== 'undefined') {
jQuery('.hasTooltip').tooltip({'html': true, 'container': 'body'});
}
};

window.fireEvent('fabrik.admin.namespace');
Expand Down

1 comment on commit 80ac9d8

@Rekemot
Copy link

@Rekemot Rekemot commented on 80ac9d8 Feb 7, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow it really works in joomla 3.2.2 ! Thanks!

Please sign in to comment.