rizzo-next
Version:
The next generation of Lonely Planet's style guide and pattern library.
17 lines (14 loc) • 518 B
JavaScript
import Component from "../../core/component";
import subscribe from "../../core/decorators/subscribe";
export default class Sights extends Component {
initialize() {
let sights = this.getInitialState();
this.sightsList = require("./sights_list.hbs");
this.$el.find(".js-sights-list").replaceWith(this.sightsList(sights));
this.subscribe();
}
("experiences.removed", "components")
_changeTitle() {
this.$el.find(".js-sights-heading").toggleClass("sights__heading--large");
}
}