-
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
Showing
936 changed files
with
122,014 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,57 @@ | ||
# Tombola | ||
|
||
Una semplice tombola per giocare con amici e parenti. | ||
|
||
## Getting Started | ||
### On the server | ||
Install the module with: `npm install Tombola` | ||
|
||
```javascript | ||
var Tombola = require('Tombola'); | ||
Tombola.awesome(); // "awesome" | ||
``` | ||
|
||
### In the browser | ||
Download the [production version][min] or the [development version][max]. | ||
|
||
[min]: https://raw.github.com/mirko/Tombola/master/dist/Tombola.min.js | ||
[max]: https://raw.github.com/mirko/Tombola/master/dist/Tombola.js | ||
|
||
In your web page: | ||
|
||
```html | ||
<script src="dist/Tombola.min.js"></script> | ||
<script> | ||
awesome(); // "awesome" | ||
</script> | ||
``` | ||
|
||
In your code, you can attach Tombola's methods to any object. | ||
|
||
```html | ||
<script> | ||
this.exports = Bocoup.utils; | ||
</script> | ||
<script src="dist/Tombola.min.js"></script> | ||
<script> | ||
Bocoup.utils.awesome(); // "awesome" | ||
</script> | ||
``` | ||
|
||
## Documentation | ||
_(Coming soon)_ | ||
|
||
## Examples | ||
_(Coming soon)_ | ||
|
||
## Contributing | ||
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [grunt](http://gruntjs.com/). | ||
|
||
_Also, please don't edit files in the "dist" subdirectory as they are generated via grunt. You'll find source code in the "lib" subdirectory!_ | ||
|
||
## Release History | ||
_(Nothing yet)_ | ||
|
||
## License | ||
Copyright (c) 2015 Mirko Squadrani | ||
Licensed under the MIT license. |
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,45 @@ | ||
{ | ||
"name": "bootstrap", | ||
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", | ||
"keywords": [ | ||
"css", | ||
"js", | ||
"less", | ||
"mobile-first", | ||
"responsive", | ||
"front-end", | ||
"framework", | ||
"web" | ||
], | ||
"homepage": "http://getbootstrap.com", | ||
"license": "MIT", | ||
"moduleType": "globals", | ||
"main": [ | ||
"less/bootstrap.less", | ||
"dist/js/bootstrap.js" | ||
], | ||
"ignore": [ | ||
"/.*", | ||
"_config.yml", | ||
"CNAME", | ||
"composer.json", | ||
"CONTRIBUTING.md", | ||
"docs", | ||
"js/tests", | ||
"test-infra" | ||
], | ||
"dependencies": { | ||
"jquery": "1.9.1 - 2" | ||
}, | ||
"version": "3.3.6", | ||
"_release": "3.3.6", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "v3.3.6", | ||
"commit": "81df608a40bf0629a1dc08e584849bb1e43e0b7a" | ||
}, | ||
"_source": "git://github.com/twbs/bootstrap.git", | ||
"_target": "~3.3.6", | ||
"_originalSource": "bootstrap", | ||
"_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,5 @@ | ||
Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs. | ||
|
||
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. | ||
|
||
Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release. |
Oops, something went wrong.