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