Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
awsp committed Jan 24, 2015
1 parent 5bcae61 commit 2fde53d
Show file tree
Hide file tree
Showing 38 changed files with 70,977 additions and 2 deletions.
Binary file added .DS_Store
Binary file not shown.
66 changes: 64 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,64 @@
# handsontable-meteor
Handsontable 0.12.4 in MeteorJS
## Meteor Handsontable
------------------------------
This package uses the latest version of Handsontable (currently @version 0.12.4) in MeteorJS.


## Installation
------------------------------
meteor add awsp:handsontable


## Important Notes
------------------------------
This package contains the latest Handsontable (ver 0.12.4).
The new version of Handsontable no longer necessary requires jQuery to work.
In order to introduce the latest Handsontable to Meteor,
a minimum of modification was made to Handsontable in this package to fix some of the conflicts when used in Meteor


The new way of initializing Handsontable is by following,

```js
var data = [
['', 'Maserati', 'Mazda', 'Mercedes', 'Mini', 'Mitsubishi'],
['2009', 0, 2941, 4303, 354, 5814],
['2010', 3, 2905, 2867, 412, 5284],
['2011', 4, 2517, 4822, 552, 6127],
['2012', 2, 2422, 5399, 776, 4151]
];
var container = hot, document.getElementById('hot');


hot = new Handsontable(container, {
data: data,
minSpareRows: 1,
colHeaders: true,
contextMenu: true
});
```

It is also possible to do in the old jQuery way.
```js
$("#hot3").handsontable({
data: data,
minSpareRows: 1,
colHeaders: true,
contextMenu: true
});
```


## ToDo
------------------------------
- Add Tinytest



## Github / Bug Reports
------------------------------



## License
------------------------------
MIT License
Empty file added awsp:handsontable-tests.js
Empty file.
1 change: 1 addition & 0 deletions awsp:handsontable.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// Write your package code here!
36 changes: 36 additions & 0 deletions bower_components/handsontable/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "handsontable",
"description": "Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs",
"version": "0.12.4",
"main": [
"./dist/handsontable.full.js",
"./dist/handsontable.full.css"
],
"ignore": [
"**/.*",
"components",
"demo",
"lib",
"plugins",
"node_modules",
"src",
"test"
],
"dependencies": {
"zeroclipboard": ">=2.1.6"
},
"devDependencies": {
"chroma-js": "~0.5.6"
},
"homepage": "https://github.com/handsontable/handsontable",
"_release": "0.12.4",
"_resolution": {
"type": "version",
"tag": "0.12.4",
"commit": "2cfb9798c790652e7f878ee92e7d7e0a1d7dd52e"
},
"_source": "git://github.com/handsontable/handsontable.git",
"_target": "~0.12.4",
"_originalSource": "handsontable",
"_direct": true
}
1 change: 1 addition & 0 deletions bower_components/handsontable/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
All releases are described at https://github.com/handsontable/handsontable/releases
1 change: 1 addition & 0 deletions bower_components/handsontable/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
handsontable.com
16 changes: 16 additions & 0 deletions bower_components/handsontable/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Contributing to Handsontable

Your contributions to the project are very welcome. If you would like to fix a bug or propose a new feature, you can submit a Pull Request.

To help us merge your Pull Request, please make sure you follow these points:

1. Please make your fix on a separate branch. This makes merging much easier.
2. Do not edit files `handsontable.js`, `handsontable.css`, `handsontable.full.js`, `handsontable.full.css`. Instead, try to edit files inside the `src/` directory and then use `grunt` to make a build. More information about this on wiki page [Building](https://github.com/handsontable/handsontable/wiki/Building).
3. Very important: For any change that you make, **please try to also add a test case(s)** in `tests/jasmine/spec/` or `src/3rdparty/walkontable/test/jasmine/spec/`. This helps us understand the issue and make sure that it will stay fixed forever. See [Testing](https://github.com/handsontable/handsontable/wiki/Testing)
4. Describe the problem in the Pull Request description (of course you would do it, why do I mention that?)

Thank you for your commitment!

## Team rules

The Handsontable team utilizes Git-Flow. See [How we use Git-Flow](https://github.com/handsontable/handsontable/handsontable/wiki/How-we-use-Git-Flow)
Loading

0 comments on commit 2fde53d

Please sign in to comment.