1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-22 07:16:38 +02:00
keeweb/app/scripts/auto-type/auto-type-filter.js

16 lines
359 B
JavaScript
Raw Normal View History

2016-07-25 20:27:22 +02:00
'use strict';
let AutoTypeFilter = function(windowInfo, appModel) {
this.title = windowInfo.title;
this.url = windowInfo.url;
this.text = '';
this.ignoreWindowInfo = false;
this.appModel = appModel;
};
AutoTypeFilter.prototype.getEntries = function() {
return this.appModel.getEntries(); // TODO
};
module.exports = AutoTypeFilter;