Pairing tab in progress
This commit is contained in:
@@ -47,14 +47,9 @@ Element.prototype.toggleClass = function(className) {
|
||||
return this;
|
||||
}
|
||||
NodeList.prototype.hasClass = function(className) {
|
||||
console.log('nodelist.hasClass')
|
||||
console.log(this.item(0));
|
||||
return this.item(0).classList.contains(className);
|
||||
}
|
||||
Element.prototype.hasClass = function(className) {
|
||||
console.log('element.hasClass')
|
||||
console.log(this.classList)
|
||||
console.log(this.classList.contains(className))
|
||||
return this.classList.contains(className);
|
||||
}
|
||||
Node.prototype.offset = function() {
|
||||
|
@@ -148,13 +148,4 @@ onLoad(() => {
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
if (!window.location.hash && window.location.search) {
|
||||
window.location.hash = '#information'
|
||||
}
|
||||
if (window.location.hash) {
|
||||
let step = window.location.hash.substring(1);
|
||||
chooseStep(step);
|
||||
}
|
||||
|
||||
});
|
||||
|
2
view-webapp/src/main/webapp/js/tour-pairing.inc.js
Normal file
2
view-webapp/src/main/webapp/js/tour-pairing.inc.js
Normal file
@@ -0,0 +1,2 @@
|
||||
onLoad(()=>{
|
||||
});
|
Reference in New Issue
Block a user