File tree Expand file tree Collapse file tree 7 files changed +7
-36
lines changed Expand file tree Collapse file tree 7 files changed +7
-36
lines changed Original file line number Diff line number Diff line change @@ -36,9 +36,9 @@ cxx-titlepage { page: title; page-break-after: always; }
36
36
37
37
@media print {
38
38
html { font-size : 10pt ; }
39
- pre , code { font-size : 8pt ; }
39
+ * / shadow - deep / pre, * / shadow - deep / code { font-size : 8pt ; }
40
40
/* Note that only Prince generates clickable links. */
41
- a [href ] { text-decoration : none; }
41
+ * / shadow - deep / a[href ] { text-decoration : none; }
42
42
}
43
43
44
44
/* Needed to make the <cxx-titlepage>'s vertical spacing work. */
Original file line number Diff line number Diff line change 13
13
limitations under the License.
14
14
-->
15
15
16
- < polymer-element name ="cxx-ednote ">
16
+ < polymer-element name ="cxx-ednote " noscript >
17
17
< template >
18
18
< style >
19
19
: host { dis play: block; }
25
25
</ style >
26
26
< aside > < strong > Editor's note:</ strong > < content > </ content > </ aside >
27
27
</ template >
28
- < script >
29
- Polymer ( 'cxx-ednote' , {
30
- applyAuthorStyles : true ,
31
- } ) ;
32
- </ script >
33
28
</ polymer-element >
Original file line number Diff line number Diff line change 13
13
limitations under the License.
14
14
-->
15
15
16
- < polymer-element name ="cxx-email ">
17
- < template > < a href ="mailto:{{value}} "> < content > </ content > </ a > </ template >
18
- < script >
19
- ( function ( ) {
20
- Polymer ( 'cxx-email' , {
21
- applyAuthorStyles : true ,
22
- 'created' : function ( ) {
23
- this . value = this . textContent ;
24
- } ,
25
- } )
26
- } ) ( ) ;
27
- </ script >
16
+ < polymer-element name ="cxx-email " noscript >
17
+ < template > < a href ="mailto:{{textContent}} "> < content > </ content > </ a > </ template >
28
18
</ polymer-element >
Original file line number Diff line number Diff line change 13
13
limitations under the License.
14
14
-->
15
15
16
- < polymer-element name ="cxx-function " constructor ="CxxFunctionElement ">
16
+ < polymer-element name ="cxx-function " constructor ="CxxFunctionElement " noscript >
17
17
< template >
18
18
< style >
19
19
: host { dis play: block; }
27
27
< content > </ content >
28
28
</ dl >
29
29
</ template >
30
- < script >
31
- Polymer ( 'cxx-function' , {
32
- applyAuthorStyles : true ,
33
- } ) ;
34
- </ script >
35
30
</ polymer-element >
36
31
< polymer-element name ="cxx-signature " noscript >
37
32
< template > < style >
38
33
: host {padding- left: 2em;dis play: block;text- indent: -2em;}
39
34
: host (.formatted ) {padding-left : 0m ; text-indent : 0 ;}
40
35
</ style > < content > </ content > </ template >
41
36
</ polymer-element >
42
- < polymer-element name ="cxx-attribute " constructor ="CxxFunctionAttributeElement ">
37
+ < polymer-element name ="cxx-attribute " constructor ="CxxFunctionAttributeElement " noscript >
43
38
< template >
44
39
< style >
45
40
: host {dis play: block; margin- to p: .5em; margin- botto m: .5em;}
50
45
</ style >
51
46
< dt > {{heading}}:</ dt > < dd > < content > </ content > </ dd >
52
47
</ template >
53
- < script >
54
- Polymer ( 'cxx-attribute' , {
55
- applyAuthorStyles : true ,
56
- } ) ;
57
- </ script >
58
48
</ polymer-element >
59
49
< polymer-element name ="cxx-requires " extends ="cxx-attribute ">
60
50
< script >
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ limitations under the License.
21
21
observe : {
22
22
'inElem.index' : 'indexChanged'
23
23
} ,
24
- applyAuthorStyles : true ,
25
24
26
25
checkInvariants : function ( ) {
27
26
if ( this . in ) {
Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ limitations under the License.
18
18
// String section number, like "17.2.3". 1-based.
19
19
sec_num : "?" ,
20
20
21
- applyAuthorStyles : true ,
22
-
23
21
checkInvariants : function ( ) {
24
22
if ( ! this . id ) {
25
23
console . error ( this , 'is missing an id.' ) ;
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ limitations under the License.
22
22
revises : null ,
23
23
title : null ,
24
24
25
- applyAuthorStyles : true ,
26
25
created : function ( ) {
27
26
this . docnum = this . querySelector ( 'cxx-docnum' ) ;
28
27
this . pubdate = this . querySelector ( 'time[pubdate]' ) ;
You can’t perform that action at this time.
0 commit comments