Ticket #280 (closed defect: fixed)

Opened 8 years ago

Last modified 8 years ago

error on loading plugins in full_example.html

Reported by: gocher Owned by: gogo
Priority: highest Milestone: Version 1.0
Component: Xinha Core Version: trunk
Severity: critical Keywords: plugins
Cc:

Description

No plugins are loaded!

In Mozilla Firefox there is only a line with all the activated plugins displayed!

FindReplaceInsertAnchorTableOperationsStylistListTypeContextMenuCharacterMapFullScreenStylistListTypeContextMenuCharacterMapFullScreen

Change History

Changed 8 years ago by gocher

error in Changeset 169

Changed 8 years ago by gocher

At first plugin is defined after it is used in the if clause!

Change htmlarea.js line 2084:

  if
  (
    plugin == null
    || typeof plugin == 'undefined'
    || (typeof plugin == 'string' && eval('typeof ' + plugin) == 'undefined')
  ) return false;

  var plugin = arguments[0];

to

  var plugin = arguments[0];
  if
  (
    plugin == null
    || typeof plugin == 'undefined'
    || (typeof plugin == 'string' && eval('typeof ' + plugin) == 'undefined')
  ) return false;

Changed 8 years ago by niko

and in line 2202 is some debug-stuff left:

document.getElementsByTagName('form').item(0).parentNode.appendChild(document.createTextNode(p));

Changed 8 years ago by gocher

  • status changed from new to closed
  • resolution set to fixed

Changed 8 years ago by gocher

fixed in changeset 173

Changed 8 years ago by gocher

  • component changed from Documentation to Xinha Core
Note: See TracTickets for help on using tickets.