Skip to content

Commit

Permalink
Fixed django.jQuery vs. jQuery passing issue in init_tinymce.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mattarchie committed Nov 7, 2015
1 parent e978783 commit ef1a35d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tinymce/static/django_tinymce/init_tinymce.js
Expand Up @@ -35,4 +35,4 @@
}, 0);
}, true);
});
}(django && django.jQuery || jQuery));
}((typeof django === 'undefined' || typeof django.jQuery === 'undefined') && jQuery || django && django.jQuery));

0 comments on commit ef1a35d

Please sign in to comment.