forked from ColorlibHQ/AdminLTE
-
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
1 parent
da1ec8e
commit 6613989
Showing
1,180 changed files
with
37,778 additions
and
29,893 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
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
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,11 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
47 changes: 47 additions & 0 deletions
47
bower_components/bootstrap-colorpicker/.github/CODE_OF_CONDUCT.md
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,47 @@ | ||
# Contributor Covenant Code of Conduct | ||
|
||
## Our Pledge | ||
|
||
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. | ||
|
||
## Our Standards | ||
|
||
Examples of behavior that contributes to creating a positive environment include: | ||
|
||
* Using welcoming and inclusive language | ||
* Being respectful of differing viewpoints and experiences | ||
* Gracefully accepting constructive criticism | ||
* Focusing on what is best for the community | ||
* Showing empathy towards other community members | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
* The use of sexualized language or imagery and unwelcome sexual attention or advances | ||
* Trolling, insulting/derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others' private information, such as a physical or electronic address, without explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a professional setting | ||
|
||
## Our Responsibilities | ||
|
||
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. | ||
|
||
## Scope | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. | ||
|
||
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team members through their social media sites or at _git @ itsjavi.com_. | ||
The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. | ||
|
||
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. | ||
|
||
## Attribution | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] | ||
|
||
[homepage]: http://contributor-covenant.org | ||
[version]: http://contributor-covenant.org/version/1/4/ |
42 changes: 42 additions & 0 deletions
42
bower_components/bootstrap-colorpicker/.github/CONTRIBUTING.md
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,42 @@ | ||
# Contributing | ||
|
||
## Support | ||
|
||
The issue tracker is not the place for support requests. If you get stuck with bootstrap-colorpicker, it's very likely | ||
that the fine folks at [StackOverflow](http://stackoverflow.com/) will be able to help you; simply describe the problem | ||
you're having and provide them a link to the repo (so they know what code you're using). | ||
|
||
|
||
## Issues | ||
For feature requests, suggestions or ideas, add `[SUGGESTION]` before the title of the issue, for anything else follow | ||
the following guidelines. | ||
|
||
### Steps to submit an issue | ||
These steps are mandatory. Issues that are not clear or are not clearly reproduceable with a live example will be closed. | ||
|
||
- Reproduce your problem in a separated environment, like in JSFiddle, | ||
[here is a template for it](http://jsfiddle.net/0vopxm13/157/), that you can fork in the same page. | ||
It already includes the required JS and CSS files. | ||
- Before posting your issue, consider adding this information: | ||
* Expected behaviour: what should happen? | ||
* Actual behaviour: what happens instead? | ||
* Your context: Where it happens? In which browser and version (if applicable)? | ||
* Plugin version (and/or commit reference). | ||
* jQuery version you use and list of all other plugins/scripts you are using with this one and may cause some conflict. | ||
* A link to your JSFiddle (or similar tool) demo where you reproduced the problem (if applicable). | ||
|
||
## Pull Requests | ||
|
||
Patches and new features are welcome! | ||
|
||
- Prerequisites: having `node`, `npm`, `yarn` and `grunt` installed in your machine. | ||
- After a fresh clone for your fork, you need to run `yarn install` inside the project's root folder. | ||
- For checking your changes in the browser you can execute `node serve` and navigate to http://localhost:5000/ | ||
- Before any commit run always `grunt` inside the project's root folder, to update the dist files | ||
(never modify them manually). | ||
- Do not change the plugin coding style. | ||
- Check that the index.html demos aren't broken (modify if necessary). | ||
- Test your code at least in Chrome, Firefox and Edge. | ||
- Any new feature should come with updated docs if applicable (a demonstration). | ||
- Generate the `/dist` files executing `grunt` before your Pull Request. | ||
- Push to your fork and submit the pull request. |
51 changes: 51 additions & 0 deletions
51
bower_components/bootstrap-colorpicker/.github/ISSUE_TEMPLATE.md
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,51 @@ | ||
<!-- | ||
THIS TEMPLATE IS MANDATORY!! | ||
Thank you for your contribution to bootstrap-colorpicker! Please replace {Please write here *} with your description. | ||
Please note that issues not following this template may be potentially discarded if they are not easily reproduceable | ||
with live examples (in case of code issues) and/or the description is not clear enough. | ||
--> | ||
|
||
### Brief description | ||
|
||
{Please write here a summary of the issue} | ||
|
||
<!-- | ||
The following sections are only mandatory for bug reports. | ||
For feature requests and other kind of tickets, you only need to fill the first section, | ||
optionally with additional comments and examples. | ||
--> | ||
### Which software are you using? | ||
|
||
- bootstrap-colorpicker version: {Please write here} | ||
- bootstrap version: {Please write here} | ||
- jQuery version: {Please write here} | ||
- Browser name and version: {Please write here} | ||
- Operative System name an version: {Please write here} | ||
|
||
### What's the expected or desirable behavior? | ||
|
||
{Please write here in case of code-related issues or remove this section} | ||
|
||
### What's the actual current behavior? | ||
|
||
{Please write here in case of code-related issues or remove this section} | ||
|
||
### Are there some other related issues or PRs? | ||
|
||
{Please write here if applicable the issue numbers or remove this section} | ||
|
||
### Steps to reproduce | ||
|
||
{Please write here in case of code-related issues or remove this section} | ||
|
||
<!-- | ||
Live examples are MANDATORY for code-related issues | ||
You have a JsFiddle template here: http://jsfiddle.net/0vopxm13/157/ which is using the latest master version of the library. | ||
--> | ||
*Live example*: {Please write here a link to your JsFiddle example} | ||
|
||
### Additional Comments (if any) | ||
|
||
{Please write here} |
38 changes: 38 additions & 0 deletions
38
bower_components/bootstrap-colorpicker/.github/PULL_REQUEST_TEMPLATE.md
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,38 @@ | ||
<!-- | ||
THIS TEMPLATE IS MANDATORY!! | ||
Thank you for your contribution to bootstrap-colorpicker! Please replace {Please write here} with your description. | ||
Please note that PRs not following this template may be potentially discarded if they are not clear enough. | ||
--> | ||
|
||
### Is your PR fixing an issue or introduces a new feature? | ||
|
||
{Please write here} | ||
|
||
### In case of fix, how this PR fixes the problem? | ||
|
||
{Please write here only in case of fix PR or remove the section} | ||
|
||
{Please also mention the related issue numbers you are trying to close, if applicable} | ||
|
||
### In case of new feature, what are the benefits and use cases? | ||
|
||
{Please write here only in case of feature PR or remove the section} | ||
|
||
### Check list | ||
Please mark with `x` inside the `[ ]` for anything that applies to this PR. | ||
|
||
- [ ] All tests passed in travis-ci | ||
- [ ] Regenerated the `dist` files via `grunt` | ||
- [ ] All documentation examples are still working after testing them via `node serve` | ||
- [ ] Added an example in the documentation for the newly introduced feature | ||
- [ ] Provided an example via JsFiddle in the description of this PR | ||
- [ ] Tested at least with latest Chrome, Firefox and Mobile (iOS Safari and/or Chrome for Android) | ||
- [ ] This PR also introduces coding style changes (indentation, etc), in a separated commit | ||
- [ ] The commit history is understandable and grouped into the minimum number of commits possible | ||
- [ ] I've followed all other [`CONTRIBUTING.md`](.github/CONTRIBUTING.md#pull-requests) guidelines for Pull Requests. | ||
|
||
### Additional Comments (if any) | ||
|
||
{Please write here} |
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,13 @@ | ||
*~ | ||
.DS_Store | ||
.DS_Store* | ||
ehthumbs.db | ||
Thumbs.db | ||
*.log | ||
/node_modules/ | ||
/bower_components/ | ||
/nbproject/ | ||
static_server.js | ||
*.php | ||
.idea | ||
package-lock.json |
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,18 @@ | ||
{ | ||
"bitwise": false, | ||
"browser": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"eqnull": true, | ||
"esnext": true, | ||
"immed": true, | ||
"jquery": true, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"node": true, | ||
"strict": false, | ||
"trailing": true, | ||
"undef": true, | ||
"predef" : ["define"] | ||
} |
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 @@ | ||
*~ | ||
.DS_Store | ||
.DS_Store* | ||
ehthumbs.db | ||
Thumbs.db | ||
*.log | ||
/node_modules/ | ||
/bower_components/ | ||
/nbproject/ | ||
/gh-pages/ | ||
/package-lock.json | ||
Gruntfile.js | ||
/build | ||
/docs | ||
/tests | ||
/spec | ||
.* | ||
/src/docs | ||
*.psd | ||
*.ai | ||
composer.json |
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,13 @@ | ||
language: node_js | ||
node_js: | ||
- "6" | ||
- "8" | ||
before_script: | ||
- npm install -g grunt-cli | ||
- curl -o- -L https://yarnpkg.com/install.sh | bash | ||
|
||
script: | ||
- yarn install | ||
- grunt --verbose | ||
# Check that files didn't change after running grunt. It should be run before pushing any code change. | ||
- if ! git diff --name-only --quiet -- dist docs src index.html --; then echo \"Files where modified after grunt execution!!...\"; exit 1; fi |
Oops, something went wrong.