Lidarr/UI/Mixins/backbone.marionette.region....

27 lines
463 B
JavaScript
Raw Normal View History

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