File tree Expand file tree Collapse file tree 1 file changed +23
-10
lines changed Expand file tree Collapse file tree 1 file changed +23
-10
lines changed Original file line number Diff line number Diff line change 5858 To migrate your code, surround the text of these attributes with quotes.
5959
6060 Before:
61-
62- <pagination first-text="<<" ...></pagination >
61+
62+ ```
63+ <pagination first-text="<<" ...></pagination >
64+ ```
6365
6466 After:
65-
66- <pagination first-text="'<<'" ...></pagination >
67+
68+ ```
69+ <pagination first-text="'<<'" ...></pagination >
70+ ```
6771
6872- ** progressbar:**
6973 The 'value' is replaced by 'percent'.
7074
7175 Before:
72-
73- <progress value =" ... " ></progress >
76+
77+ ```
78+ <progress value =" ... " ></progress >
79+ ```
7480
7581 After:
76-
77- <progress percent =" ... " ></progress >
82+
83+ ```
84+ <progress percent =" ... " ></progress >
85+ ```
7886
7987- ** tabs:**
8088 The 'tabs' directive has been renamed to 'tabset', and
8189 the 'pane' directive has been renamed to 'tab'.
8290
8391 To migrate your code, follow the example below.
8492
85- Before:
93+ Before:
8694
95+ ```
8796 <tabs>
8897 <pane heading="one">
8998 First Content
92101 {{apple.content}}
93102 </pane>
94103 </tabs>
104+ ```
95105
96- After:
106+ After:
97107
108+ ```
98109 <tabset>
99110 <tab heading="one">
100111 First Content
103114 {{apple.content}}
104115 </tab>
105116 </tabset>
117+ ```
118+
106119
107120# 0.3.0 (2013-04-30)
108121
You can’t perform that action at this time.
0 commit comments