Skip to content

Commit 9558a0b

Browse files
committed
fix for example markup
1 parent 36e3eff commit 9558a0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

partial/examples/examples.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h4>Field definitions</h4>
3131
compile: true // should field be compiled, true or false (OPTIONAL),
3232
value: function(row,column){ return row[column]/2;} // custom function for column value if no data exists for column in data array (OPTIONAL),
3333
click: function(){ return console.log('column clicked);} // click function for column (OPTIONAL),
34-
expand: "<my-directive></my-directive>" // expand (open/close) row when clicked and add this as content (could be a directive or plain html) (OPTIONAL),
34+
expand: "&lt;my-directive&gt;&lt;/my-directive&gt;" // expand (open/close) row when clicked and add this as content (could be a directive or plain html) (OPTIONAL),
3535
export: function(row,column){ return '&lt;span&gt;'+row[column]+'&lt;/span&gt;';} // custom function for export presentation (OPTIONAL)
3636
}]
3737
</code>

0 commit comments

Comments
 (0)