X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/f7b9f2577c412532fb29bad0cc9de27351d7daaf..246796cf3b707c4c340edc7a1d51946fff8a278e:/src/fnpjs/layout.js?ds=sidebyside diff --git a/src/fnpjs/layout.js b/src/fnpjs/layout.js index 68d4738..715d2d2 100644 --- a/src/fnpjs/layout.js +++ b/src/fnpjs/layout.js @@ -1,9 +1,9 @@ define(['libs/jquery', 'libs/underscore'], function($ ,_) { 'use strict'; - var Layout = function(template) { + var Layout = function(template, tutorial) { var layout = this; - this.dom = $(_.template(template)()); + this.dom = $(_.template(template)({tutorial: tutorial})); this.views = {}; this.dom.onShow = function() {