Changeset 649

Show
Ignore:
Timestamp:
03/06/10 16:31:22 (5 months ago)
Author:
mr_lundis
Message:

Typo in getTagForStyle, fixes #191

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/wymeditor/jquery.wymeditor.mozilla.js

    r648 r649  
    279279  if(/italic/.test(style)) return 'em'; 
    280280  if(/sub/.test(style)) return 'sub'; 
    281   if(/sub/.test(style)) return 'super'; 
     281  if(/super/.test(style)) return 'sup'; 
    282282  return false; 
    283283};