Cross Reference:
xref
: /
yui3
/
widget
/
tabview
/
plugin
/
tabio.js
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
tabio.js revision 808903890750c2e01a093b79dce7c7c5669dde1f
867
N/A
(
function
() {
369
N/A
369
N/A
var
M =
function
(Y) {
369
N/A
369
N/A
var
tabIO
=
function
() {
369
N/A
tabIO
.
superclass
.
constructor
.
apply
(
this
,
arguments
);
369
N/A
};
369
N/A
369
N/A
tabIO
.
NAME
=
'tabio'
;
369
N/A
369
N/A
var
proto
= {
369
N/A
initializer
:
function
(
config
) {
369
N/A
this
.
listen
(
this
.
owner
,
'activeChange'
,
this
.
onActiveChange
,
this
,
true
);
369
N/A
},
369
N/A
369
N/A
onActiveChange
:
function
() {
369
N/A
this
.
request
();
369
N/A
},
369
N/A
369
N/A
onSuccess
:
function
(o) {
6320
N/A
this
.
owner
.
set
(
'content'
, o.
responseText
);
369
N/A
}
369
N/A
};
369
N/A
369
N/A
Y.
lang
.
extend
(
tabIO
, Y.
IOPlugin
,
proto
);
6320
N/A
Y.
TabIOPlugin
=
tabIO
;
369
N/A
};
6320
N/A
YUI
.
add
(
"tabioplugin"
, M,
"3.0.0"
);
844
N/A
})();
6320
N/A