2017-04-07 02:55:42 +02:00
|
|
|
import {Injectable} from '@angular/core';
|
2017-02-24 22:54:59 +01:00
|
|
|
export var EditTaskGuard = (function () {
|
2017-04-07 02:55:42 +02:00
|
|
|
function EditTaskGuard() {
|
|
|
|
}
|
|
|
|
|
|
|
|
EditTaskGuard.prototype.canDeactivate = function (component, route, router) {
|
|
|
|
return component.canDeactivate();
|
|
|
|
};
|
|
|
|
EditTaskGuard.decorators = [
|
|
|
|
{type: Injectable},
|
|
|
|
];
|
|
|
|
/** @nocollapse */
|
|
|
|
EditTaskGuard.ctorParameters = [];
|
|
|
|
return EditTaskGuard;
|
2017-02-24 22:54:59 +01:00
|
|
|
}());
|
2017-04-07 02:55:42 +02:00
|
|
|
//# sourceMappingURL=edit-task.guard.js.map
|