Sha256: f956041af85fd1a15134a8d0a45c857286e4a83b246c43fbf5831d70de1c2c3d
Contents?: true
Size: 1.07 KB
Versions: 24
Compression:
Stored size: 1.07 KB
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) // ========================================================================== SC.AceTheme.Popover.workspaceRenderDelegate = SC.RenderDelegate.create({ className: 'workspace', render: function(dataSource, context) { context.setClass({ 'top-toolbar': dataSource.get('hasTopToolbar'), 'bottom-toolbar': dataSource.get('hasBottomToolbar') }); context = context.begin('div').addClass('popover-background'); this.includeSlices(dataSource, context, SC.NINE_SLICE); context.push("<div class = 'sc-pointer'></div>"); context = context.end(); }, update: function(dataSource, jquery) { jquery.setClass({ 'top-toolbar': dataSource.get('hasTopToolbar'), 'bottom-toolbar': dataSource.get('hasBottomToolbar') }); } });
Version data entries
24 entries across 24 versions & 1 rubygems