Compare status output in normal and air mode

Both layouts still expose .note-status-output. The normal editor also has the resize/status bar, while the air editor keeps only the editable surface and the status output region.

Normal mode

Normal mode content.

Air mode

Air mode content.

Layout inspection
Ready.
Example configuration - Normal and Air Mode
summernote.create('#modules-mode-normal', {
  height: 220,
});

summernote.create('#modules-mode-air', {
  airMode: true,
});

const normalOutput = summernote.getInstance('#modules-mode-normal')
  .layoutInfo.editor[0]
  .querySelector('.note-status-output');