fix shell incompatibility with datatables; add dotted border around input box
[plstackapi.git] / planetstack / core / static / shell / opencloud_shell.js
index 8d850be..1715fdd 100644 (file)
@@ -303,7 +303,7 @@ MongoHandler.prototype = {
   },
 
   _getCommand: function(tokens) {
-    if(tokens[0] && MongoKeywords.include((tokens[0].value + '').toLowerCase())) {
+    if(tokens[0] && ArrayInclude(MongoKeywords,(tokens[0].value + '').toLowerCase())) {
       switch(tokens[0].value.toLowerCase()) {
         case 'help':
           return this._help;