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
The dial widget uses CSS background sprites for the rotating animation. Therefore a bit of extra CSS is necessary to ensure the dial will look like it should:
26
+
27
+
.ui-dial {
28
+
display: inline-block;
29
+
background: url('dial.png') no-repeat top left;
30
+
width: 32px;
31
+
height: 32px;
32
+
}
33
+
34
+
See the demo directory in the repository for a complete example.
0 commit comments