Current File : /home/jvzmxxx/wiki1/extensions/Cards/resources/muhogan.js
/*jshint -W002 */
// Register the Hogan compiler with MediaWiki.
( function () {
	var compiler;
	/*
	 * Check if muhogan is already registered (by QuickSurveys). If not
	 * register mustache (Desktop) or hogan (Mobile) as muhogan.
	 */
	try {
		mw.template.getCompiler( 'muhogan' );
	} catch ( e ) {
		try {
			compiler = mw.template.getCompiler( 'mustache' );
		} catch ( e ) {
			compiler = mw.template.getCompiler( 'hogan' );
		}

		// register hybrid compiler with core
		mw.template.registerCompiler( 'muhogan', compiler );
	}
}() );