fix(directives): set copy directive z-index 1

closes #769
This commit is contained in:
Kevin Kelly 2016-01-28 08:52:08 -05:00 committed by Ward Bell
parent ea9216ce8a
commit 81770aee6b
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ angularIO.directive('copyContainer', function() {
transclude: true,
template:
'<div style="position: relative">' +
'<copy-button style="position: absolute; top: 10px; right: 0px; z-index: 1000" ></copy-button>' +
'<copy-button style="position: absolute; top: 10px; right: 0px; z-index: 1" ></copy-button>' +
'<ng-transclude></ng-transclude>' +
'</div>'
};
@ -57,4 +57,4 @@ angularIO.directive('copyButton', function() {
});
}
};
});
});