Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
26 changes: 26 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
environment:
nodejs_version: "8"

# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install

# Configure project artifacts.
artifacts:
- path: apps\test-bundle-button\dist\test-bundle-button.json
name: SizeAuditor
type: json

# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test

# Don't actually build.
build: off
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ temp
lib
lib-amd
lib-es2015
lib-commonjs
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

coverage
dist
npm-debug.log
Expand Down Expand Up @@ -113,4 +114,4 @@ gulp-cache
# NPM debug logs
npm-debug.log.*

package-lock.json
package-lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "HoverCard: Removing unnecessary animation class causing a visual bug in IE browser.",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "v-vibr@microsoft.com"
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
import { IExpandingCardProps, IExpandingCardStyles, ExpandingCardMode } from './ExpandingCard.types';
import { Callout, ICallout } from '../../Callout';
import { DirectionalHint } from '../../common/DirectionalHint';
import { AnimationStyles, mergeStyles } from '../../Styling';
import { mergeStyles } from '../../Styling';
import { FocusTrapZone } from '../../FocusTrapZone';
import { getStyles } from './ExpandingCard.styles';

Expand Down Expand Up @@ -78,10 +78,7 @@ export class ExpandingCard extends BaseComponent<IExpandingCardProps, IExpanding
<Callout
{ ...getNativeProps(this.props, divProperties) }
componentRef={ this._callout }
className={ mergeStyles(
AnimationStyles.scaleUpIn100,
this._styles.root
) }
className={ mergeStyles(this._styles.root) }
target={ targetElement }
isBeakVisible={ false }
directionalHint={ this.props.directionalHint }
Expand Down