Skip to content

sleeboard/sleeboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sleeboard

Adding amharic to your website should be easy. No more parsing websites. This is a simple package to add amharic to your website.

INSTALL

bower install --save sleeboard

HOW TO INITIALIZE

var Lang = sleeboard();

To initialize amharic typing by default add a selector while initializing

var Lang = sleeboard('#amharic');

To enable for multiple text fields at once use a class

var Lang = sleeboard('.amharic');

ENABLE AND DISABLE PLUGIN

var Lang = sleeboard();

function disableAmharic () {
  Lang.disable('.amharic');
}

function enableAmharic () {
  Lang.enable('.amharic');
}