De promotiewebsite die de reguliere site vervangt tijdens de Kick-In.
https://join.harambee.utwente.nl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
512 B
18 lines
512 B
//mockup (apparently location.replace is read only so.... NO TESTS...)
|
|
|
|
/*
|
|
window.location.replace = function(url){
|
|
console.log("weeee");
|
|
locationReplace = url;
|
|
};
|
|
|
|
|
|
QUnit.test('Testing recordHistory:false', function(assert) {
|
|
var id = '#fullpage';
|
|
var FP = initFullpageNew(id, Object.assign({}, allBasicOptions, {recordHistory: false}));
|
|
var windowHeight = $(window).height();
|
|
|
|
FP.moveSectionDown();
|
|
assert.equal(locationReplace, '#page2', 'We expect section 3 to be active');
|
|
});
|
|
*/ |