graying corpus statistic(plus tests+vc test fixed) and fix vc serialization
Change-Id: I3f934c2cc0ebbb0a91b5fa8f529bf3f5c3ebd391
(cherry picked from commit 172d6a4bbc7d29a0fe7c23b114fbbf485e2f4aeb)
diff --git a/dev/demo/vcdemo.js b/dev/demo/vcdemo.js
index 0c66dd3..4e0eaed 100644
--- a/dev/demo/vcdemo.js
+++ b/dev/demo/vcdemo.js
@@ -122,32 +122,32 @@
// Create a new virtual collection by passing a based json object and
// field menu information
- var vc = vcClass.create([
+ KorAP.vc = vcClass.create([
['title', 'string'],
['subTitle', 'string'],
['pubDate', 'date'],
['author', 'text']
]).fromJson(json);
- document.getElementById('vc-view').appendChild(vc.element());
+ document.getElementById('vc-view').appendChild(KorAP.vc.element());
- vc.open();
+ KorAP.vc.open();
// show the current JSON serialization
KorAP.showJSON = function () {
var json = document.getElementById("json");
- json.innerHTML = JSON.stringify(vc.root().toJson(), null, ' ');
+ json.innerHTML = JSON.stringify(KorAP.vc.root().toJson(), null, ' ');
hljs.highlightBlock(json);
};
// show the current query serialization
KorAP.showQuery = function () {
- document.getElementById("query").innerHTML = vc.root().toQuery();
+ document.getElementById("query").innerHTML = KorAP.vc.root().toQuery();
};
// make the current vc persistant
KorAP.makeVCPersistant = function () {
- vc.makePersistant();
+ KorAP.vc.makePersistant();
};
//get the corpus statistic (demo function)