Skip to content

Commit

Permalink
9th edition of documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Renan committed Jun 12, 2019
1 parent 5dd7dfe commit 5fecf10
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ Written in **JavaScript (ES6)**
Created by **Renan Niemietz Cardoso**

## Dependencies
[Materialize CSS v0.100.0](https://github.com/Dogfalo/materialize/tree/v0.100.0)

[XLSX v0.14.0](https://github.com/SheetJS/js-xlsx/tree/v0.14.0)

Before declaring **massimp.min.js**, make sure **[Materialize CSS v0.100.0](https://github.com/Dogfalo/materialize/tree/v0.100.0)**, **massimp.min.css** and **[XLSX v0.14.0](https://github.com/SheetJS/js-xlsx/tree/v0.14.0)** were declared previously in your HTML, like the following example:
```html
Expand All @@ -32,7 +29,7 @@ Before declaring **massimp.min.js**, make sure **[Materialize CSS v0.100.0](http
```javascript
$(".massimp-container").massimp( [OPTIONS] );
```
* Eg.:
* e.g.:
```javascript
$(".massimp-container").massimp({
showInputFileText: false,
Expand All @@ -44,7 +41,7 @@ $(".massimp-container").massimp({
```javascript
getElementsByClassName("massimp-container")[0].massimp( [OPTIONS] );
```
* Eg.:
* e.g.:
```javascript
getElementsByClassName("massimp-container")[0].massimp({
showInputFileText: false,
Expand All @@ -56,7 +53,7 @@ getElementsByClassName("massimp-container")[0].massimp({
```javascript
new Massimp(".massimp-container", [OPTIONS] );
```
* Eg.:
* e.g.:
```javascript
new Massimp(".massimp-container", {
showInputFileText: false,
Expand All @@ -82,7 +79,7 @@ colorExtraButtonClass | "red" | Extra button's class | string
extraButtonText | "Cancel" | Extra button's text | string
onExtraButtonClicked | null | Action after extra button has been clicked | function

## Methods:
## Methods

Method | Description | Parameter Type | Return Type
--- | --- | --- | ---
Expand All @@ -98,7 +95,7 @@ setColorExtraButtonClass | Change the extra button's class | string | void
setExtraButtonText | Change the extra button's text | string | void
processMassiveImport | Process/Calculate the massive import | function | void

## Events (jQuery Only):
## Events (jQuery Only)

Event | Description
--- | ---
Expand Down

0 comments on commit 5fecf10

Please sign in to comment.