Sha256: 9b8b8c7e88f19e65119fa83297298afd20e3a36a4d9124e0a0bcc605094d3903
Contents?: true
Size: 954 Bytes
Versions: 15
Compression:
Stored size: 954 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2010 Sprout Systems, Inc. and contributors. // License: Licensed under MIT license (see license.js) // ========================================================================== SC.BaseTheme.nativeScrollRenderDelegate = SC.RenderDelegate.create({ className: 'native-scroll', render: function (dataSource, context) {}, update: function (dataSource, context) { var K = 'scrollRenderDelegate', scroll = context.find('> .sc-scroll-container-view'); if (dataSource.didChangeFor(K, 'canScrollHorizontal')) { scroll.css('overflow-x', dataSource.get('canScrollHorizontal') ? 'scroll' : 'hidden'); } if (dataSource.didChangeFor(K, 'canScrollVertical')) { scroll.css('overflow-y', dataSource.get('canScrollVertical') ? 'scroll' : 'hidden'); } } });
Version data entries
15 entries across 15 versions & 1 rubygems