From e81fd520782ae23cc1140c42a2270ed4bb97c92d Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Fri, 24 Jan 2014 22:07:10 +0400 Subject: [PATCH] Merged dLog replacement --- app/index.html | 2 +- app/js/directives.js | 3 --- app/vendor/{ => console-polyfill}/console-polyfill.js | 0 3 files changed, 1 insertion(+), 4 deletions(-) rename app/vendor/{ => console-polyfill}/console-polyfill.js (100%) diff --git a/app/index.html b/app/index.html index a1722b8b..e10c55fd 100644 --- a/app/index.html +++ b/app/index.html @@ -21,7 +21,7 @@
- + diff --git a/app/js/directives.js b/app/js/directives.js index 7e663269..109c8ac5 100644 --- a/app/js/directives.js +++ b/app/js/directives.js @@ -282,7 +282,6 @@ angular.module('myApp.directives', ['myApp.filters']) if (richTextarea) { scope.$watch('draftMessage.text', function (newVal) { - console.log('on update', newVal); if (!newVal.length && !messageField.value.length) { $timeout(function () { updateField(); @@ -292,8 +291,6 @@ angular.module('myApp.directives', ['myApp.filters']) } function updateField () { - console.log(scope.draftMessage); - console.log('update field', scope.draftMessage.text); $(richTextarea).text(scope.draftMessage.text || ''); } diff --git a/app/vendor/console-polyfill.js b/app/vendor/console-polyfill/console-polyfill.js similarity index 100% rename from app/vendor/console-polyfill.js rename to app/vendor/console-polyfill/console-polyfill.js