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 was archived by the owner on Jun 14, 2018. It is now read-only.
New guideline for directives: if a public property / attribute on a directive takes a finite set of options, even if it is optional / default, the directive must:
include an enum with the options
validate the value of the attribute passed in is valid & if not, log an error in the console using $log.error()
This was recently implemented on the uif-icon directive... currently in the dev branch. See how it's done here:
New guideline for directives: if a public property / attribute on a directive takes a finite set of options, even if it is optional / default, the directive must:
$log.error()
This was recently implemented on the
uif-icon
directive... currently in thedev
branch. See how it's done here:This will require the following
The text was updated successfully, but these errors were encountered: