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
|
|
|
|
*/
|