-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Meldinoor
committed
May 26, 2016
1 parent
f78bdad
commit c290945
Showing
270 changed files
with
84,234 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"name": "LanguageSelecter", | ||
"version": "1.0.0", | ||
"authors": [ | ||
"Meldinoor <[email protected]>" | ||
], | ||
"description": "A simple angular directive for selecting from world languages", | ||
"main": ["css/LanguageSelecter.css", "js/app.js"], | ||
"moduleType": [], | ||
"keywords": [ | ||
"angular", | ||
"currency" | ||
], | ||
"license": "MIT", | ||
"homepage": "", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"angular": "^1.5.1", | ||
"bootstrap": "^3.3.6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2016 Meldinoor | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# angular-language | ||
A simple bootstrap dropdown for selecting from world languages | ||
|
||
# Usage | ||
Make sure to include 'LanguageSelecter' as a dependency in your angular module. | ||
|
||
To implement the selecter in your markup, use the following syntax: | ||
|
||
|
||
`<language-selecter ng-model="myLanguage"></language-selecter>` | ||
|
||
# Options | ||
|
||
**Default Language** | ||
|
||
The following syntax will make English your default language (selected automatically) | ||
|
||
`<language-selecter ng-model="myLanguage" default-language="en"></language-selecter>` | ||
|
||
**Preferred Languages** | ||
|
||
Use preferred languages to always display your preferred languages at the top of the list | ||
|
||
|
||
`<language-selecter ng-model="myLanguage" preferred-languages="en, sv"></language-selecter>` | ||
|
||
**Include/Exclude Languages** | ||
|
||
Use include-languages or exclude-languages if you wish to specify explicitly which languages to display or not to display in the list. | ||
Example: | ||
|
||
|
||
`<language-selecter include-languages="sv,en,de" preferred-languages="sv, en" default-language="sv" ng-model="myLanguage"></language-selecter>` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.