Fix check equals.

This commit is contained in:
Arcady Usov 2014-04-28 18:57:14 +06:00
parent f81e415dd0
commit 6ec6e1acf0
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ $(document).ready(function () {
// initialize ckeditor in admin inline for "add-row" link
if ($('.add-row a').length > 0) {
$('.add-row a').each(function() {
if ($(this).data('isInitCMSCKEditor') != 'yes') {
if ($(this).data('isInitCMSCKEditor') !== 'yes') {
$(this).click(function() {
initCMSCKEditor();
});