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