Blame view
app/scripts/controllers/main.js
369 Bytes
|
c87bc1f33
|
1 2 |
define(['app'], function (app) {
'use strict';
|
|
c87bc1f33
|
3 |
app.controller('MainCtrl', function ($scope) {
|
|
87c93a029
|
4 5 |
$scope.modalTShirtDesign = function() {
// console.log($('#tshirt-design').length);
|
|
5fe93ca88
|
6 7 8 9 10 11 12 13 14 |
$('#tshirt-design').modal(
{
backdrop: 'static',
keyboard: false
}
);
};
$scope.modalClose = function(){
$('#tshirt-design').modal('hide');
|
|
87c93a029
|
15 |
} |
|
c87bc1f33
|
16 17 |
}); }); |