forked from ag-grid/ag-grid
-
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.
Merge pull request "Contribution & Browserify Refactor ag-grid#69"
- Loading branch information
Showing
239 changed files
with
15,244 additions
and
71,975 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,2 @@ | ||
|
||
node_modules/ |
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,53 @@ | ||
Contributing to Angular Grid | ||
======================== | ||
|
||
Contributions to Angular Grid are welcome and encouraged, but please have a look through the guidelines in this document before raising an issue, or writing code for the project. | ||
|
||
|
||
Using issues | ||
------------ | ||
|
||
The [issue tracker](https://github.com/ceolter/angular-grid/issues) is the preferred channel for reporting bugs, requesting new features and submitting pull requests. | ||
|
||
To keep the library lightweight for everyone, it's unlikely we'll add many more features to the core of Angular Grid, but issues are a good medium to design and spec out how new features could work and look. | ||
|
||
Please do not use issues for support requests. For help using Angular Grid, please take a look at the [`angular-grid`](http://stackoverflow.com/questions/tagged/angular-grid) tag on Stack Overflow. | ||
|
||
|
||
Reporting bugs | ||
-------------- | ||
|
||
Well structured, detailed bug reports are hugely valuable for the project. | ||
|
||
Guidlines for reporting bugs: | ||
|
||
- Check the issue search to see if it has already been reported | ||
- Isolate the problem to a simple test case | ||
- Provide a demonstration of the problem on [JS Bin](http://jsbin.com) or similar | ||
|
||
Please provide any additional details associated with the bug, if it's browser or screen density specific, or only happens with a certain configuration or data. | ||
|
||
|
||
Pull requests | ||
------------- | ||
|
||
Clear, concise pull requests are excellent at continuing the project's community driven growth. But please review [these guidelines](https://github.com/blog/1943-how-to-write-the-perfect-pull-request) and the guidelines below before starting work on the project. | ||
|
||
Guidlines: | ||
|
||
- Please create an issue first: | ||
- For bugs, we can discuss the fixing approach | ||
- For enhancements, we can discuss if it is within the project scope and avoid duplicate effort | ||
- Please make changes to the files in [`/src`](https://github.com/ceolter/angular-grid/tree/master/src), not `Angular Grid` or `angularGrid.min.js` in the repo root directory, this avoids merge conflicts | ||
- Tabs for indentation, not spaces please | ||
- If adding new functionality, please also update the relevant `.md` file in [`/docs`](https://github.com/ceolter/angular-grid/tree/master/docs) | ||
- Please make your commits in logical sections with clear commit messages | ||
|
||
Joining the Project | ||
------------- | ||
- Active committers and contributors are invited to introduce yourself and request commit access to this project. Please send an email to [email protected] or file an issue. | ||
|
||
License | ||
------- | ||
|
||
By contributing your code, you agree to license your contribution under the [MIT license](https://github.com/ceolter/angular-grid/blob/master/LICENSE.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
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,18 @@ | ||
{ | ||
"name": "angular", | ||
"version": "1.3.15", | ||
"main": "./angular.js", | ||
"ignore": [], | ||
"dependencies": {}, | ||
"homepage": "https://github.com/angular/bower-angular", | ||
"_release": "1.3.15", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "v1.3.15", | ||
"commit": "ba7abcfa409ba852146e6ba206693cf7bac3e359" | ||
}, | ||
"_source": "git://github.com/angular/bower-angular.git", | ||
"_target": "~1.3.15", | ||
"_originalSource": "angular", | ||
"_direct": true | ||
} |
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,64 @@ | ||
# packaged angular | ||
|
||
This repo is for distribution on `npm` and `bower`. The source for this module is in the | ||
[main AngularJS repo](https://github.com/angular/angular.js). | ||
Please file issues and pull requests against that repo. | ||
|
||
## Install | ||
|
||
You can install this package either with `npm` or with `bower`. | ||
|
||
### npm | ||
|
||
```shell | ||
npm install angular | ||
``` | ||
|
||
Then add a `<script>` to your `index.html`: | ||
|
||
```html | ||
<script src="/node_modules/angular/angular.js"></script> | ||
``` | ||
|
||
Or `require('angular')` from your code. | ||
|
||
### bower | ||
|
||
```shell | ||
bower install angular | ||
``` | ||
|
||
Then add a `<script>` to your `index.html`: | ||
|
||
```html | ||
<script src="/bower_components/angular/angular.js"></script> | ||
``` | ||
|
||
## Documentation | ||
|
||
Documentation is available on the | ||
[AngularJS docs site](http://docs.angularjs.org/). | ||
|
||
## License | ||
|
||
The MIT License | ||
|
||
Copyright (c) 2010-2015 Google, Inc. http://angularjs.org | ||
|
||
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,13 @@ | ||
/* Include this file in your html if you are using the CSP mode. */ | ||
|
||
@charset "UTF-8"; | ||
|
||
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], | ||
.ng-cloak, .x-ng-cloak, | ||
.ng-hide:not(.ng-hide-animate) { | ||
display: none !important; | ||
} | ||
|
||
ng\:form { | ||
display: block; | ||
} |
Oops, something went wrong.