We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c0b513 commit 12694d0Copy full SHA for 12694d0
tv/tv.go
@@ -236,6 +236,14 @@ func (id *iplayerDocument) programPages(selres []*iplayerSelectionResult) []Page
236
return urls
237
}
238
239
+func (id *iplayerDocument) boxSet() []Pager {
240
+ var urls []Pager
241
+ id.doc.Find(".series-nav__button > a").Each(func(i int, s *goquery.Selection) {
242
+ urls = append(urls, BeebURL(s.AttrOr("href", "")))
243
+ })
244
+ return urls
245
+}
246
+
247
// RelatedLink represents a link entry on a programme's root home page.
248
// It consists of a title, e.g. IMDB, and the url, e.g.
249
// https://www.imdb.com/title/tt0146316/?ref_=ttfc_fc_tt
0 commit comments