Sha256: 1290b6dbbed8275f302b358932945949078ee8e8acaa16d40ebfcb5c568bfad7
Contents?: true
Size: 1.06 KB
Versions: 17
Compression:
Stored size: 1.06 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({ name: '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
17 entries across 17 versions & 1 rubygems