Writers are cruel creatures. This week, the Word Docs discuss all the occasions when they’ve felt let down, horribly surprised, or otherwise manipulated by authors,
Alex, Amy and Sean (aka Dr Alex Vickery-Howe, Dr Amy T Matthews and Dr Sean Williams)are professional writers who also lecture full-time at Flinders University,
Have 20th century women writers been given the recognition they deserve? Make upyour own mind as Goodwood Books owner, Sarah Tooth, takes Tsundoku on a
Award winning Melbourne author Hannah Kent talks about her new book Devotion – a love story that traverses oceans, reality and magic. And we revisit the Virginia Woolfe classic, Mrs Dalloway,
jQuery(document).ready(function($) {
var playerContainer = $('#auscast-player-container');
var player = $('#auscast-player');
// Show player and store session
$('#play-auscast').click(function() {
playerContainer.slideDown();
sessionStorage.setItem('auscastPlaying', 'true');
sessionStorage.setItem('auscastSrc', player.attr('src'));
});
// Keep the player open and playing across page reloads
if (sessionStorage.getItem('auscastPlaying') === 'true') {
playerContainer.show();
player.attr('src', sessionStorage.getItem('auscastSrc'));
}
// Close player
$('#close-auscast-player').click(function() {
playerContainer.slideUp();
sessionStorage.removeItem('auscastPlaying');
sessionStorage.removeItem('auscastSrc');
player.attr('src', ''); // Stop playback
});
// Stop stream when another audio plays
$('audio, video').on('play', function() {
player.attr('src', '');
sessionStorage.removeItem('auscastPlaying');
sessionStorage.removeItem('auscastSrc');
});
});