From 1e027c0f1c469ef1ddb6649eb20f73406e2f097b Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 21 Dec 2015 12:38:33 +0300 Subject: [PATCH] stopable interval for animations --- src/app/theme/services/stopableInterval.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/app/theme/services/stopableInterval.js diff --git a/src/app/theme/services/stopableInterval.js b/src/app/theme/services/stopableInterval.js new file mode 100644 index 0000000..8b43eb3 --- /dev/null +++ b/src/app/theme/services/stopableInterval.js @@ -0,0 +1,16 @@ +/** + * @author a.demeshko + * created on 12/21/15 + */ +(function () { + 'use strict'; + + angular.module('theme') + .service('stopableInterval', stopableInterval); + + /** @ngInject */ + function stopableInterval() { + + } + +})(); \ No newline at end of file