forked from adrigardi90/video-chat
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Adrián García Diéguez
authored and
Adrián García Diéguez
committed
Feb 6, 2019
1 parent
ccd3cbc
commit c996909
Showing
9 changed files
with
470 additions
and
127 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<template> | ||
<div> | ||
<md-dialog | ||
:md-active.sync="showDialog" | ||
:md-fullscreen="false" | ||
:md-click-outside-to-close="false" | ||
> | ||
<div> | ||
<md-avatar class="md-avatar-icon md-primary"> | ||
<md-icon>folder</md-icon> | ||
</md-avatar> | ||
</div> | ||
<md-dialog-content>whateverrr</md-dialog-content> | ||
|
||
<md-dialog-actions> | ||
<md-button class="md-primary" @click="showDialog = false">Close</md-button> | ||
<md-button class="md-primary" @click="showDialog = false">Save</md-button> | ||
</md-dialog-actions> | ||
</md-dialog> | ||
|
||
<md-button class="md-primary md-raised" @click="showDialog = true">Show Dialog</md-button> | ||
</div> | ||
</template> | ||
|
||
|
||
<script> | ||
export default { | ||
name: "ChatDialog", | ||
props: { | ||
showDialog: Boolean | ||
}, | ||
data: function() { | ||
return { | ||
}; | ||
}, | ||
created() {} | ||
}; | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.md-overlay { | ||
position: absolute !important; | ||
} | ||
</style> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.md-overlay { | ||
position: unset; | ||
top: unset; | ||
right: unset; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters