Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Meldinoor committed May 26, 2016
1 parent f78bdad commit c290945
Show file tree
Hide file tree
Showing 270 changed files with 84,234 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .bower.json
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"
}
}
21 changes: 21 additions & 0 deletions LICENSE
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.
33 changes: 33 additions & 0 deletions README.md
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>`
280 changes: 280 additions & 0 deletions app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c290945

Please sign in to comment.