Wednesday, November 8, 2023

TinyMCE Insert/Edit link not editable

 To fix this add e.stopImmediatePropagation() as below.

$(document).on('focusin', function (e) {

            if ($(e.target).closest(".tox-tinymce, .tox-tinymce-aux, .moxman-window, .tam-assetmanager-root").length) {

                e.stopImmediatePropagation();

            }

        });

Friday, November 3, 2023

How to export Android Signing Keys

A signing key is a digital key used to sign Android apps, confirming their authenticity and ensuring they haven't been tampered with. It's an essential part of app development and distribution.

The default location for Android signing keys on a Windows computer is:

`C:\Users\username\AppData\Local\Xamarin\Mono for Android\Keystore\AppName`

Here, replace "username" with your Windows username, and "AppName" with the name of your Android app. This directory stores your Android signing keys.

TinyMCE Insert/Edit link not editable

 To fix this add  e.stopImmediatePropagation()  as below. $(document).on('focusin', function (e) {             if ($(e.target).close...