mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 15:31:52 +00:00
config redirect
This commit is contained in:
+28
@@ -0,0 +1,28 @@
|
||||
QUnit.test( 'item onTransitionEnd', function( assert ) {
|
||||
|
||||
var container = document.querySelector('#item-on-transition-end');
|
||||
var layout = new Outlayer( container, {
|
||||
containerStyle: { top: 0 },
|
||||
transitionDuration: '1s'
|
||||
});
|
||||
var item = layout.items[0];
|
||||
item.addListener( 'transitionEnd', function() {
|
||||
console.log( item.element.style.display ); } );
|
||||
// item.on( 'transitionEnd', function() {
|
||||
// console.log( item.element.style.display ); } );
|
||||
// var itemElem = layout.items[0].element;
|
||||
var done = assert.async();
|
||||
// hide, then immediate reveal again, while item is still transitioning
|
||||
layout.hide( [ item ] );
|
||||
setTimeout( function() {
|
||||
item.addListener( 'transitionEnd', function() {
|
||||
console.log('second', item.element.style.display );
|
||||
// console.log( item.element.style.display );
|
||||
assert.ok( true, true );
|
||||
// assert.equal( item.element.style.display, '', 'item was not hidden');
|
||||
done();
|
||||
});
|
||||
layout.reveal( [ item ] );
|
||||
}, 500 );
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user