View speakers.service.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
angular | |
.module('main') | |
.service('SpeakersService', function ($http, | |
$cookieStore, | |
$q, | |
$rootScope, | |
URL, BUCKET_SLUG, READ_KEY, WRITE_KEY, MEDIA_URL) { |
View speakers.mdl.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
angular | |
.module('speakers', []) | |
.config(config); | |
config.$inject = ['$stateProvider', '$urlRouterProvider']; | |
function config($stateProvider, $urlRouterProvider) { | |
View speakers.ctrl.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
angular | |
.module('main') | |
.controller('SpeakersCtrl', SpeakersCtrl); | |
function SpeakersCtrl($rootScope, SpeakersService, Notification, $log, MEDIA_URL, $state) { | |
var vm = this; |
View about.mdl.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
angular | |
.module('about', []) | |
.config(config); | |
config.$inject = ['$stateProvider', '$urlRouterProvider']; | |
function config($stateProvider, $urlRouterProvider) { | |
View about.ctrl.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
angular | |
.module('main') | |
.controller('AboutCtrl', AboutCtrl); | |
function AboutCtrl($stateParams, AboutService, Notification, $log, MEDIA_URL, $state) { | |
var vm = this; |
View about.service.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
angular | |
.module('main') | |
.service('AboutService', function ($http, | |
$cookieStore, | |
$q, | |
$rootScope, | |
URL, BUCKET_SLUG, READ_KEY, WRITE_KEY, MEDIA_URL) { |
View user.service.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
angular | |
.module('main') | |
.service('UserService', function ($http, | |
$cookieStore, | |
$q, | |
$rootScope, | |
URL, BUCKET_SLUG, READ_KEY, WRITE_KEY) { |
View auth.service.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
angular | |
.module('main') | |
.service('AuthService', function ($http, | |
$cookieStore, | |
$q, | |
$rootScope, | |
URL, BUCKET_SLUG, READ_KEY, WRITE_KEY) { |
View auth.ctrl.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
angular | |
.module('main') | |
.controller('AuthCtrl', AuthCtrl); | |
function AuthCtrl(crAcl, $state, AuthService, Flash, $log) { | |
var vm = this; |
View main.mdl.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
angular | |
.module('main', [ | |
'ui.router', | |
'ui.bootstrap', | |
'ngMask', | |
'ngCookies', | |
'ngRoute', |
NewerOlder