1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 18:42:42 +01:00
Radarr/UI/Mixins/backbone.marionette.region.mixin.js

27 lines
463 B
JavaScript
Raw Normal View History

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