Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update plugins to use classes for initialisation. #38

Merged
merged 27 commits into from
Jun 10, 2018
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7a151f8
Update navbar to use classes
May 26, 2018
0cd6b6a
Convert the dropdown plugin to use classes
May 26, 2018
7eb4b44
Update the accordion to include getRootClass
May 26, 2018
8c9e47c
Update navbar to use classes
May 26, 2018
21cf7ec
Convert the dropdown plugin to use classes
May 26, 2018
6348dbc
Update the accordion to include getRootClass
May 26, 2018
f45862f
Merge branch 'feature/classes' of github.com:VizuaaLOG/BulmaJS into f…
May 26, 2018
4684a52
Update the file plugin to use classes
Jun 10, 2018
7a79779
Update the message plugin to use classes
Jun 10, 2018
8794305
Update modal plugin to use classes
Jun 10, 2018
05f677d
Update the notification plugin to use classes
Jun 10, 2018
6dee7c2
Update the tabs plugin to use classes
Jun 10, 2018
d8fc245
JSDoc correction
Jun 10, 2018
626111b
Dev build latest to dist
Jun 10, 2018
47572a7
Documentation updates. Closes #20
Jun 10, 2018
43d03f8
Update navbar to use classes
May 26, 2018
bf86d56
Convert the dropdown plugin to use classes
May 26, 2018
44e8fb5
Update the accordion to include getRootClass
May 26, 2018
6e51e3b
Update the file plugin to use classes
Jun 10, 2018
eeaf5b4
Update the message plugin to use classes
Jun 10, 2018
c68351e
Update modal plugin to use classes
Jun 10, 2018
8d9008d
Update the notification plugin to use classes
Jun 10, 2018
a408120
Update the tabs plugin to use classes
Jun 10, 2018
6b01b1e
JSDoc correction
Jun 10, 2018
5fab9df
Dev build latest to dist
Jun 10, 2018
15d6cb7
Documentation updates. Closes #20
Jun 10, 2018
7038ac7
Merge branch 'feature/classes' of github.com:VizuaaLOG/BulmaJS into f…
Jun 10, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update modal plugin to use classes
  • Loading branch information
Thomas Erbe committed Jun 10, 2018
commit 87943051d7096b45d161364da7432da287e19147
4 changes: 4 additions & 0 deletions src/plugins/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ class Modal {
static handleDomParsing() {
return;
}

static getRootClass() {
return 'modal';
}
}

Bulma.registerPlugin('modal', Modal);
Expand Down