Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed Nov 6, 2024
1 parent 03035f4 commit d934908
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/core/helpers/utils/complete-url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/

import { globalWindow } from 'jodit/core/constants';

/**
* @module helpers/utils
*/

import { globalWindow } from 'jodit/core/constants';

export const completeUrl = (url: string): string => {
if (globalWindow.location.protocol === 'file:' && /^\/\//.test(url)) {
url = 'https:' + url;
Expand Down
1 change: 1 addition & 0 deletions src/core/selection/style/api/extract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export function extractSelectedPart(

/**
* Retrieves content before after the selected area, clears it if it is empty, and inserts before after the framed selection
* @private
*/
function extractAndMove(
wrapper: HTMLElement,
Expand Down
4 changes: 3 additions & 1 deletion src/plugins/image-properties/readers/align.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ import { css } from 'jodit/core/helpers/utils/css';

import type { EditValues } from '../interface';

/** @private */
/**
* @private
*/
export function readAlign(image: HTMLImageElement, values: EditValues): void {
// Align
if (
Expand Down

0 comments on commit d934908

Please sign in to comment.