-
Notifications
You must be signed in to change notification settings - Fork 3.4k
feat(linear-progress): Add linear progress indicator #286
Conversation
bar1.css('width', clamp(value).toString() + '%'); | ||
}); | ||
|
||
$timeout(function(){container.addClass('ready');}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we use an $$rAF
here?
$$rAF( function(){
var container = element.find('.container');
container.addClass('ready');
});
@@ -66,6 +66,12 @@ | |||
user-select: $val; | |||
} | |||
|
|||
@mixin animation($animation) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you rebase against master, we have an animation mixin already.
Note added about ARIA on the progress element itself. If it is showing progress of a specific region of the page, we may want to add code that establishes a relationship between the progress indicator and the other region: "If the More about the |
This linear progress directive displays a simple, animated loading bar. There are four display modes: determinate, indeterminate, buffer and query. Closes #187
9ce7516
to
8b5213a
Compare
This linear progress directive displays a simple, animated loading bar. There are four display modes: determinate, indeterminate, buffer and query.
Closes #187