Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.

Commit

Permalink
Fixed small ID problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Jan 5, 2011
1 parent 2c94303 commit f62768b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dist/jquery.qtip.css
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Wed Jan 5 19:39:49 2011 +0000
* Date: Wed Jan 5 20:02:12 2011 +0000
*/

/* Fluid class for determining actual width in IE */
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.qtip.js
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Wed Jan 5 19:39:49 2011 +0000
* Date: Wed Jan 5 20:02:12 2011 +0000
*/

"use strict"; // Enable ECMAScript "strict" operation for this function. See more: http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/
Expand Down Expand Up @@ -252,7 +252,7 @@ function QTip(target, options, id)
function createTitle()
{
var elems = self.elements,
id = uitooltip + '-'+id+'-title';
id = uitooltip+'-'+self.id+'-title';

// Destroy previous title element, if present
if(elems.titlebar) { removeTitle(); }
Expand Down Expand Up @@ -615,7 +615,7 @@ function QTip(target, options, id)
'id': uitooltip + '-'+id,
'role': 'alert', // Apparently "tooltip" doesn't work too well... so we'll use alert
'class': uitooltip + ' qtip ui-helper-reset ' + options.style.classes,
'aria-describedby': uitooltip + '-' + id + '-content'
'aria-describedby': uitooltip + '-' + self.id + '-content'
})
.toggleClass(disabled, self.cache.disabled)
.data('qtip', self)
Expand Down
8 changes: 4 additions & 4 deletions dist/jquery.qtip.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f62768b

Please sign in to comment.