12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
|
/**
|
||
|
* Created by mmk2410 on 12/5/15.
|
||
|
*
|
||
|
* Example JavaScript file to demonstrate the rangitaki extension support
|
||
|
*/
|
||
|
|
||
|
function main() {
|
||
|
console.log("Welcome Developer! \nYou're seeing the output of a javascript extension for the rangitaki blogging engine.")
|
||
|
}
|
||
|
|
||
|
$(document).ready(main());
|