| author | raph |
| Tue, 20 Apr 2010 11:14:21 +0200 | |
| branch | preserve_html |
| changeset 259 | 0371caf8bcc6 |
| parent 0 | 40c8f766c9b8 |
| permissions | -rw-r--r-- |
| 0 | 1 |
/* |
2 |
Copyright (c) 2009, Yahoo! Inc. All rights reserved. |
|
3 |
Code licensed under the BSD License: |
|
4 |
http://developer.yahoo.net/yui/license.txt |
|
5 |
version: 3.0.0 |
|
6 |
build: 1549 |
|
7 |
*/ |
|
8 |
YUI.add("queue-promote",function(A){A.mix(A.Queue.prototype,{indexOf:function(B){return A.Array.indexOf(this._q,B);},promote:function(C){var B=this.indexOf(C);if(B>-1){this._q.unshift(this._q.splice(B,1));}},remove:function(C){var B=this.indexOf(C);if(B>-1){this._q.splice(B,1);}}});},"3.0.0",{requires:["yui-base"]}); |