Sha256: d3136e17b01c57597de5d565ceb902e4504fff580f1a83a76009eb282fc68462
Contents?: true
Size: 732 Bytes
Versions: 11
Compression:
Stored size: 732 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== /** * Renders and updates the HTML representation of a popup button. */ SC.BaseTheme.popupButtonRenderDelegate = SC.BaseTheme.buttonRenderDelegate.create({ render: function(dataSource, context) { context.setAttr('aria-haspopup', 'true'); sc_super(); }, update: function(dataSource, jQuery) { sc_super(); } });
Version data entries
11 entries across 11 versions & 1 rubygems