main.js 263 B

1234567891011121314
  1. (function($){
  2. $.trumbowyg.upload.serverPath = 'action.php?action=upload';
  3. //plugin alias wrapper
  4. $.fn.extend({
  5. wysiwyg : function(o1,o2){
  6. return this.each(function() {
  7. $(this).trumbowyg(o1,o2);
  8. });
  9. }
  10. });
  11. })(jQuery);