You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
I had the same issue. i have changed style of fakearea Div
as .sa-fakeArea {
color: transparent; }.
and removed color property in smart-area.js. it fix overlap text issue also.
In smart-area.css change textarea.sa-realArea to
textarea.sa-realArea {
-webkit-text-fill-color: inherit;
}
Add below code in Scope Watches -
$scope.$watch('areaData', function(){
$scope.trackCaret();
// TODO Track caret on another fake area, so I don't have to recalculate autocomplete triggers every time the cursor moves.
checkTriggers();
var saRealArea = $('textarea.sa-realArea');
if ($scope.areaData.length) {
saRealArea.css({
webkitTextFillColor: 'transparent'
});
} else {
saRealArea.css({
webkitTextFillColor: 'inherit'
});
}
});
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
No description provided.
The text was updated successfully, but these errors were encountered: