We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f387c5 commit 4722dadCopy full SHA for 4722dad
src/components/MdProgress/MdProgressSpinner/MdProgressSpinner.vue
@@ -55,7 +55,10 @@
55
return this.mdMode === 'indeterminate'
56
},
57
isIE () {
58
- return navigator.userAgent.toLowerCase().includes('trident')
+ if (!this.$isServer) {
59
+ return navigator.userAgent.toLowerCase().includes('trident')
60
+ }
61
+ return false
62
63
progressClasses () {
64
let animationClass = 'md-progress-spinner-indeterminate'
0 commit comments