
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
jquery.bangla
Advanced tools
A versatile bangla input tools for the web
Live Demo: https://dipu-bd.github.io/jquery.bangla/
npm i --save jquery jquery.bangla
import 'jquery.bangla';
// Or,
require('jquery.bangla');
// Then, on some editable elements...
$('input[type="text"]').bangla(); // input box
$('textarea').bangla(); // text area
$('div[contenteditable="true"]').bangla(); // content editable div
$('.note-editable').bangla() // summer-note (a free WYSWYG editor)
npm install
npm run build
dist/
folder to your static assets directoryYou an pass the following configs during initialization (all configs are optional):
// all the default values are given here
$('<some-element-selectoor>').bangla({
enable: false,
maxSuggestions: 10,
disableSuggestion: false,
storeKey: '__avro--candidates',
store: window.localStorage,
provider: /* see below */
})
enable
Pass true
to enable bangla right after initialization.
maxSuggestions
The maximum number of suggestions that user will see for a word.
disableSuggestion
Pass true
if you do not want to display the suggestion box.
storeKey
The key that is used for storing candidate words.
store
The storage to save candidate words. A cadidate word is a bangla word that user had select against an english word. In the next suggestion box for that english word, the cadidate word will be automatically selected.
The store should haeve two fields:
getItem(key)
: Returns the value given the keysetItem(key, val)
: Stores the value against the key to retriee it later.provider
By default, Avro Phonetic from https://github.com/omicronlab/avro-pad is used. But you can define your own provider. A provider should have three fields.
suggest(word)
: This will return an object containing words
field. The field words
is an array of possible bangla word for the given english word.candidate(word)
: This will return previously selected bangla word for the english input.commit(word, bangla)
: It will save the candidate bangla word for an english word.You can customize the input tool after initialization:
$('input').bangla('toggle')
: Toggles the input option between bangla and english.$('input').bangla('on')
: Enables the bangla mode.$('input').bangla('off')
: Disables the bangla mode.$('input').bangla('enable')
: Get whether the bangla is enabled for a single element.$('input').bangla('enable', true)
: Enables the bangla mode.$('input').bangla('enable', false)
: Disable the bangla mode.$('input').bangla('tool')
: Access the BanglaInputTool instance for a single element.FAQs
A versatile bangla input tool for the web
The npm package jquery.bangla receives a total of 11 weekly downloads. As such, jquery.bangla popularity was classified as not popular.
We found that jquery.bangla demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.