20 lines
342 B
JavaScript
20 lines
342 B
JavaScript
|
// Copyright 2016 Tim Shannon. All rights reserved.
|
||
|
// Use of this source code is governed by the MIT license
|
||
|
// that can be found in the LICENSE file.
|
||
|
/* jshint strict: true */
|
||
|
|
||
|
(function() {
|
||
|
"use strict";
|
||
|
|
||
|
var r = new Ractive({
|
||
|
el: "body",
|
||
|
template: "#tMain",
|
||
|
data: function() {
|
||
|
return {
|
||
|
|
||
|
};
|
||
|
},
|
||
|
});
|
||
|
|
||
|
})();
|