New client popups profile andmore (#8907)

* Added more styles to user profile modal and replaced memberDetail

* Added notify library

* Added edit avator

* Added notification menu updates

* Fixed lint issues

* Added group invite functionality

* Added many achievement modals

* Added initial quest modals

* Added guild, drops, and rebirth modals

* Added the reset of the achievement modals and fixed lint
This commit is contained in:
Keith Holliday
2017-08-01 12:52:49 -06:00
committed by GitHub
parent bca52cb6fa
commit 0dba37008f
39 changed files with 1624 additions and 348 deletions

View File

@@ -98,8 +98,12 @@ export default {
round (number) {
return Math.abs(number.toFixed(1));
},
// @TODO: Implement when we have a notify library
//notify (html, type, icon, canHide, onClick) {
notify (html) {
// @TODO: try these params type, icon, canHide, onClick
this.$notify({
title: 'Habitica',
text: html,
});
// let stack_topright = {"dir1": "down", "dir2": "left", "spacing1": 15, "spacing2": 15, "firstpos1": 60};
// let notice = $.pnotify({
// type: type || 'warning', //('info', 'text', 'warning', 'success', 'gp', 'xp', 'hp', 'lvl', 'death', 'mp', 'crit')
@@ -119,6 +123,6 @@ export default {
// onClick();
// }
// });
//},
},
},
};