1 1 : YUI().add('toolbar', function(Y) { 2 1 : Y.Toolbar = function Toolbar() { 3 2 : this.message = "I am a toolbar!"; 4 2 : function hidden(testme) { 5 0 : var ret = testme ' TESTED'; 6 0 : return ret; 7 : } 8 : }; 9 : 10 1 : Y.Toolbar.prototype = { 11 : zop: function() { 12 0 : this.zop = 'ZOP'; 13 : } 14 : }; 15 : 16 1 : function testme(y) { 17 0 : return y * 55; 18 : } 19 : 20 : }, '1.0.0' ,{requires:['attribute', 'event-custom-base', 'common-utils']}); 21 :