Archive

Archive for February, 2007

Fuck your hold music.

February 14th, 2007
Comments Off

—- Original Message —–
From: Paul Irish
Date: Wed, 14 Feb 2007 08:47:28 -0500
To: support@reservationless-plus.com
Subject: hold music

This hold music is infuriating. It makes me want to convince the entire PM team to use a different provider.
In addition to the all-to-often marketing messages, the music choice is terrible. The wailing guitar solo is loud and conspicuous.
I think the volume of all of it could be toned down quite a bit.

Anyway, though I write this in a state of frustration, I hope this feedback is received and digested with understanding. :)

Cheers

—–Original Message—–
From: Wright, Crystal
Sent: Wednesday, February 14, 2007 9:34 AM
To: paul.irish
Cc: QCD
Subject: RE: hold music - Thread:326586

Paul thank you for your feedback, we have provided your feedback to our
Marketing Department. Have a great day.

Crystal Wright
Quality Supervisor

On 2/14/07, Brown, Hattie wrote:

Our marketing department is working to change this ASAP. The messages
will rotate every 90 seconds (and be different) and the music will
change out every few weeks.

Damn straight.

Paul Irish me

Animated GIF not animating?

February 4th, 2007
Comments Off

So it turns out that if you set up a loading spinner like this:

<div id="spinner" style="display: none"><img src="loading.gif"/>Loading...</div>

And then show the div, the animated gif will not animate in… which browser? IE6, of course.

Solutions:

Refresh the innerHTML content (This is stupid but it works..):

document.getElementById('spinner').style.display = '';  // show it, and then...
document.getElementById('spinner').innerHTML = document.getElementById('spinner').innerHTML;

OR
Set the animated gif as the div’s css background image instead of using the child IMG element. Perhaps:

#spinner { 
  background: url(loading.gif) no-repeat 5px 3px; 
  padding-left: 20px; }

The second solution is a little classier and is also better from a semantic POV, IMHO.

Paul Irish front-end development