Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « services « content_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf5234bbff867b8e0ca80760f2c8df2dfeede365 (plain)
1
2
3
4
5
export const hasSelection = (tiptapEditor) => {
  const { from, to } = tiptapEditor.state.selection;

  return from < to;
};