define(function (require) { "use strict"; var $ = require('jquery'), JqueryUI = require('jquery-ui.min'), _ = require('underscore'), Backbone = require('backbone'), tpl = require('text!tpl/splash.html'), template = _.template(tpl); return Backbone.View.extend({ initialize: function () { this.render(); }, render: function () { require('another/script'); this.$el.html(template()); return this; }, events:{ } }); });