Sha256: f035f80d6e6961408e66c314198820658a79914b779802dcf3886881ba348be8
Contents?: true
Size: 637 Bytes
Versions: 2
Compression:
Stored size: 637 Bytes
Contents
// ========================================================================== // Project: SproutCore Bricks // Copyright: ©2011 Paul Chavard // Author : Paul Chavard // // images_error.js // ========================================================================== SB = this.SB || {}; SB.ImagesErrorSupport = SC.Mixin.create({ didInsertElement: function() { this._super(); var img = this.$('img[data-rescue-errors]'), self = this; img.hide().error(function() { if (self.imageLoadError(img)) { img.show(); } }).load(function() { img.show(); }); }, imageLoadError: SC.K });
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rasputin-0.7.1 | vendor/assets/javascripts/bricks/images_error.js |
rasputin-0.7.0 | vendor/assets/javascripts/bricks/images_error.js |