Add scrollIntoView behaviour.

This commit is contained in:
Paulo Reis 2018-09-25 11:45:29 +01:00 committed by Jessica Lawshe
parent 399a9ed604
commit 1424ae686a
2 changed files with 12 additions and 11 deletions

View file

@ -1,10 +1,10 @@
script(type="text/javascript").
if (window.location.hash) {
setTimeout(function(){
tabID = window.location.hash.replace(/#!?/, '')
tab = document.getElementById(tabID)
if (tab && typeof(tab) != 'undefined' && tab != null) {
tab.setAttribute('active', true)
}
}, 500);
}
//- script(type="text/javascript").
//- if (window.location.hash) {
//- setTimeout(function(){
//- tabID = window.location.hash.replace(/#!?/, '')
//- tab = document.getElementById(tabID)
//- if (tab && typeof(tab) != 'undefined' && tab != null) {
//- tab.setAttribute('active', true)
//- }
//- }, 500);
//- }

View file

@ -12,6 +12,7 @@ define [
tab.bookmarkableTabId == hash
if matchingTab?
matchingTab.select()
el.children()[0].scrollIntoView({ behavior: "smooth" })
App.directive "bookmarkableTab", ($location) ->
restrict: "A"
@ -22,7 +23,7 @@ define [
if tabScope? and tabId? and tabId != ""
tabScope.bookmarkableTabId = tabId
tabScope.$watch "active", (isActive, wasActive) ->
if isActive and !wasActive
if isActive and !wasActive and $location.hash() != tabId
$location.hash tabId