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

Use bootstrap-vue #269

Merged
merged 29 commits into from
Oct 9, 2018
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4c6e34e
Use window.addEventListener instead of `$(document).ready`
okkez Oct 3, 2018
0c9fbae
Add bootstrap-vue
okkez Oct 3, 2018
db817c1
Import CSS for bootstrap-vue
okkez Oct 3, 2018
14c24c5
Use BootstrapVue
okkez Oct 3, 2018
ea66cdc
Use bootstrap-vue
okkez Oct 3, 2018
d1a1aff
Use bootstrap-vue for misc/information
okkez Oct 3, 2018
a2f7234
Remove unused code
okkez Oct 3, 2018
9f65e67
Use proper label
okkez Oct 3, 2018
093a484
Add label for clear
okkez Oct 4, 2018
6cd589c
Decorate plugins
okkez Oct 4, 2018
3bef15e
Plugin#installed? and Plugin#processing? should return true/false
okkez Oct 4, 2018
eb7c2ca
Add helper method plguins_json
okkez Oct 4, 2018
cbd8c57
Use bootstrap-vue on /plugins/recommended
okkez Oct 4, 2018
947883c
Remove a garbage
okkez Oct 4, 2018
9e9a0f3
Use bootstrap-vue on /plugins/installed
okkez Oct 4, 2018
e5f07f8
Use small table
okkez Oct 4, 2018
e3f393a
Use b-collapse
okkez Oct 4, 2018
b715a02
Use b-col and b-row
okkez Oct 4, 2018
7feeeeb
Convert to Haml
okkez Oct 4, 2018
e82e6b4
Use b-card
okkez Oct 4, 2018
a6523b5
Convert navigation to Haml format
okkez Oct 9, 2018
f159af0
Display logout link
okkez Oct 9, 2018
1bc3540
Use bootstrap-vue's tooltip component
okkez Oct 9, 2018
3229e3e
Remove unused partial template
okkez Oct 9, 2018
f318407
Remove unused data attributes
okkez Oct 9, 2018
e1b3842
Use bootstrap-vue's tooltip component
okkez Oct 9, 2018
9d2ec4b
Remove debug print
okkez Oct 9, 2018
f99f8ff
Use bootstrap-vue's dropdown component
okkez Oct 9, 2018
3cfff4a
Use bootstrap-vue components
okkez Oct 9, 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
Use BootstrapVue
Signed-off-by: Kenji Okimoto <[email protected]>
okkez committed Oct 3, 2018
commit 14c24c5bc983b5f24ffae993874c9c7f59340219
3 changes: 3 additions & 0 deletions app/javascript/packs/application.js
Original file line number Diff line number Diff line change
@@ -29,6 +29,9 @@ import Vue from "vue/dist/vue.esm";
import Vuex from "vuex/dist/vuex.esm";
import BootstrapVue from "bootstrap-vue/dist/bootstrap-vue.esm";

Vue.use(Vuex);
Vue.use(BootstrapVue);

Vue.filter("to_json", function (value) {
return JSON.stringify(value);
});