Guest User

Untitled

a guest
Dec 12th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. (function($)
  2. {
  3. $.Redactor.prototype.abbr = function()
  4. {
  5. return {
  6. init: function ()
  7. {
  8. var button = this.button.add('abbr', 'Abbreviation');
  9. this.button.setIcon(button, '<i class="re-icon-toggle"></i>');
  10. this.button.addCallback(button, function()
  11. {
  12. this.inline.format('abbr', 'title', 'test');
  13. });
  14. }
  15. };
  16. };
  17. })(jQuery);
Add Comment
Please, Sign In to add comment