Blame view

app/scripts/controllers/main.js 230 Bytes
c87bc1f33   TRUONG   first commit: ini...
1
2
  define(['app'], function (app) {
  	'use strict';
c87bc1f33   TRUONG   first commit: ini...
3
  	app.controller('MainCtrl', function ($scope) {
87c93a029   Dang YoungWorld   add modal
4
5
6
7
  		$scope.modalTShirtDesign = function() {
  			// console.log($('#tshirt-design').length);
  			$('#tshirt-design').modal();
  		}
c87bc1f33   TRUONG   first commit: ini...
8
9
  	});
  });