1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Mixins/backbone.marionette.region.mixin.js

27 lines
463 B
JavaScript
Raw Normal View History

2013-05-15 05:20:43 +03:00
/*
2013-06-22 09:24:24 +03:00
'use strict';
2013-05-15 05:07:14 +03:00
(function () {
var _originalRegionClose = Marionette.Region.prototype.close;
2013-05-15 05:20:43 +03:00
*/
/*
2013-05-15 05:07:14 +03:00
Marionette.Region.prototype.open = function (view) {
var self = this;
2013-05-15 05:20:43 +03:00
self.$el.html(view.el);
//self.$el.fadeIn(100);
};*//*
2013-05-15 05:07:14 +03:00
Marionette.Region.prototype.close = function () {
2013-05-15 05:20:43 +03:00
*/
/* this.$el.fadeOut(200, function () {
_originalRegionClose.apply(this, arguments);
});*//*
2013-05-15 05:07:14 +03:00
};
}());
2013-05-15 05:20:43 +03:00
*/