main.js 369 Bytes
define(['app'], function (app) {
	'use strict';
	app.controller('MainCtrl', function ($scope) {
		$scope.modalTShirtDesign = function() {
			// console.log($('#tshirt-design').length);
			$('#tshirt-design').modal(
				{
					backdrop: 'static',
					keyboard: false
				}
			);
		};
		$scope.modalClose = function(){
			$('#tshirt-design').modal('hide');
		}
	});
});