Blame view

app/scripts/controllers/main.js 369 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
  		$scope.modalTShirtDesign = function() {
  			// console.log($('#tshirt-design').length);
5fe93ca88   Dang YoungWorld   Theme modal
6
7
8
9
10
11
12
13
14
  			$('#tshirt-design').modal(
  				{
  					backdrop: 'static',
  					keyboard: false
  				}
  			);
  		};
  		$scope.modalClose = function(){
  			$('#tshirt-design').modal('hide');
87c93a029   Dang YoungWorld   add modal
15
  		}
c87bc1f33   TRUONG   first commit: ini...
16
17
  	});
  });