if (page != $this.currentPage) {
$($this).trigger('changePage', [page]);
}
+ this.landingpage.hide();
this.menu.closeView(function () {
if (page != $this.currentPage) {
$this.pageTransition(page);
if (this.datas.url_link == '' || this.datas.url_link == 'http://') {
return;
}
- this.wopen(this.datas.url_link, '_blank');
+
+ if (this.datas.url_link.indexOf('#') === 0) {
+ window.location.hash = this.datas.url_link;
+ } else {
+ this.wopen(this.datas.url_link, '_blank');
+ }
},
addWaiter: function (reset) {