CC-2258: Describe rights for each user type on the user page
This commit is contained in:
parent
2bebe7f025
commit
076a1c56cb
7 changed files with 362 additions and 10 deletions
23
airtime_mvc/public/js/tipsy/AIRTIME_DEV_README
Normal file
23
airtime_mvc/public/js/tipsy/AIRTIME_DEV_README
Normal file
|
@ -0,0 +1,23 @@
|
|||
Before overwriting jquery.tipsy.js, please note we have changed a few lines to
|
||||
support manual triggering with live tipsy tooltips
|
||||
|
||||
|
||||
denise@denise-DX4860:~/airtime/airtime_mvc/public/js/tipsy$ diff -u jquery.tipsy_orig.js jquery.tipsy.js
|
||||
--- jquery.tipsy_orig.js 2012-12-13 12:03:48.780751104 -0500
|
||||
+++ jquery.tipsy.js 2012-12-13 12:08:15.564761493 -0500
|
||||
@@ -173,12 +173,10 @@
|
||||
|
||||
if (!options.live) this.each(function() { get(this); });
|
||||
|
||||
- if (options.trigger != 'manual') {
|
||||
- var binder = options.live ? 'live' : 'bind',
|
||||
- eventIn = options.trigger == 'hover' ? 'mouseenter' : 'focus',
|
||||
- eventOut = options.trigger == 'hover' ? 'mouseleave' : 'blur';
|
||||
- this[binder](eventIn, enter)[binder](eventOut, leave);
|
||||
- }
|
||||
+ var binder = options.live ? 'live' : 'bind',
|
||||
+ eventIn = options.trigger == 'hover' ? 'mouseenter' : 'focus',
|
||||
+ eventOut = options.trigger == 'hover' ? 'mouseleave' : 'blur';
|
||||
+ this[binder](eventIn, enter)[binder](eventOut, leave);
|
||||
|
||||
return this;
|
Loading…
Add table
Add a link
Reference in a new issue