mkws.defaultTemplate simply returns null when there is no template,
authorMike Taylor <mike@indexdata.com>
Tue, 10 Jun 2014 15:45:08 +0000 (16:45 +0100)
committerMike Taylor <mike@indexdata.com>
Tue, 10 Jun 2014 15:45:08 +0000 (16:45 +0100)
rather than throwing an error. This allows clever calling code to back
off along a sequence of attempted template names.

src/mkws-core.js

index 08bedf0..a8c0470 100644 (file)
@@ -270,9 +270,7 @@ onclick="mkws.{{fn}}(\'{{team}}\', \'{{field}}\', \'{{term}}\');return false;"\
 ';
   }
 
-  var s = "There is no default '" + name +"' template!";
-  alert(s);
-  return s;
+  return null;
 };