Sha256: 1a580ff69ed4d618ed254dddce9421bb88555bdb532315eb95d75f01457615be
Contents?: true
Size: 896 Bytes
Versions: 41
Compression:
Stored size: 896 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Apple Inc. and contributors. // License: Licensed under MIT license (see license.js) // ========================================================================== var view ; module("SC.CollectionView#displayProperties", { setup: function() { view = SC.CollectionView.create({ isVisibleInWindow: YES }).createLayer(); }, teardown: function() { view.destroy(); } }); test("should gain active class if isActive", function() { SC.RunLoop.begin(); view.set('isActive', YES); SC.RunLoop.end(); ok(view.$().hasClass('active'), 'should have active class'); SC.RunLoop.begin(); view.set('isActive', NO); SC.RunLoop.end(); ok(!view.$().hasClass('active'), 'should remove active class'); });
Version data entries
41 entries across 41 versions & 1 rubygems