add missing import to inputbar module

This commit is contained in:
Yeiniel Suárez Sosa 2020-11-28 14:31:01 -05:00 committed by Yeiniel Suarez Sosa
parent a027ae6306
commit 6fe87ac6cc
No known key found for this signature in database
GPG Key ID: E2CFACE611B42B6C

View File

@ -1,6 +1,7 @@
(function() {
'use strict';
import * as _ from "underscore";
var weechat = angular.module('weechat');
weechat.directive('inputBar', function() {
@ -806,4 +807,3 @@ weechat.directive('inputBar', function() {
}]
};
});
})();