Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Titogelo committed Mar 24, 2017
1 parent 56fd0e5 commit a94ea39
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
17 changes: 2 additions & 15 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,6 @@ var uglify = require('gulp-uglify');
var bytediff = require('gulp-bytediff');
var rename = require('gulp-rename');

//'src/main/webapp/src/app.js',
//'src/main/webapp/src/routes.js',
//'src/main/webapp/src/components/home/*.js',
//'src/main/webapp/src/components/account/*.js',
//'src/main/webapp/src/components/activity/*.js',
//'src/main/webapp/src/components/common/*.controller.js',
//'src/main/webapp/src/components/common/*.directive.js',
//'src/main/webapp/src/components/landing/*.js',
//'src/main/webapp/src/components/message/*.js',
//'src/main/webapp/src/components/oauth/*.js',
//'src/main/webapp/src/components/response/*.js',
//'src/main/webapp/src/components/run/*.js',
//'src/main/webapp/src/components/user/*.js',
//'src/main/webapp/src/components/channel/*.js'

// Minify JS
gulp.task('app', function() {
return gulp.src([
Expand Down Expand Up @@ -140,6 +125,8 @@ gulp.task('vendor', function() {
'src/main/webapp/src/assets/vendor/fullcalendar/gcal.js',
'src/main/webapp/src/assets/vendor/fullcalendar/calendar.js',
'src/main/webapp/src/assets/vendor/angular-datapicker/angular-datepicker.js',
'node_modules/ment.io/dis/*.',
//'node_modules/ment.io/src/*.js'
])
.pipe(plumber())
.pipe(concat('vendor.js', {newLine: ';'}))
Expand Down
7 changes: 7 additions & 0 deletions src/main/webapp/src/components/message/message.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,13 @@ angular.module('DojoIBL')
$scope.notifications.length == 0;
};


$scope.people = [
{ label: 'Joe'},
{ label: 'Mike'},
{ label: 'Diane'}
]

function notifyMe(message) {

var not = {};
Expand Down

0 comments on commit a94ea39

Please sign in to comment.