This file contains hidden or 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
config: { | |
i18n: { | |
locale: 'fr-fr' | |
} | |
} |
This file contains hidden or 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
define([ | |
'marionette', | |
'templates', | |
'i18n!nls/colors' | |
], function (Marionette, Templates, colors) { | |
"use strict"; | |
return Marionette.ItemView.extend({ | |
template: Templates['user/item.hbs'], | |
templateHelpers: { |
This file contains hidden or 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
requirejs: { | |
compile: { | |
options: { | |
name: 'config', | |
baseUrl: './app/scripts/', | |
mainConfigFile: 'app/scripts/config.js', | |
out: 'dist/build/require.js', | |
optimize: 'none' | |
} | |
} |
This file contains hidden or 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
define([ | |
'underscore', | |
'marionette', | |
'vent', | |
'views/mixins/resizable', | |
'views/group/collection/item' | |
], function ( | |
_, | |
Marionette, | |
vent, |
This file contains hidden or 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
define([ | |
'jquery', | |
'underscore' | |
], function ($, _) { | |
"use strict"; | |
return { | |
onRender: function () { | |
var column = this.$el.parents('.column'); | |
var debounceResize = _.debounce(this.resize, 100); |
This file contains hidden or 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
a.email-share { | |
display: block; | |
height: 34px; | |
width: 34px; | |
background: url(../images/btn_mail.png) no-repeat #302f2f; | |
text-indent: -9999px; | |
} | |
@media all and (-webkit-min-device-pixel-ratio: 2), | |
all and (min-device-width: 641px) { |
This file contains hidden or 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
define([ | |
'marionette', | |
'vent', | |
'views/layouts/manage/groups', | |
'views/group/collection', | |
'views/learner/collection', | |
'collections/api/group', | |
'collections/api/learner' | |
], function ( | |
Marionette, |
This file contains hidden or 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
define([ | |
'vent', | |
'routers/manage/groups', | |
'routers/manage/learners', | |
'controllers/manage/groups', | |
'controllers/manage/learners', | |
'views/layouts/manage/module', | |
'views/tab/collection/section', | |
'collections/client/tab/section' | |
], function ( |
This file contains hidden or 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
define([ | |
'vent', | |
'routers/manage/groups', | |
'routers/manage/learners', | |
'controllers/manage/groups', | |
'controllers/manage/learners', | |
'views/layouts/manage/module', | |
'views/tab/collection', | |
'collections/client/tab' | |
], function ( |
This file contains hidden or 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
define([ | |
'routers/dashboard/index', | |
'controllers/dashboard/index', | |
'views/layouts/dashboard/module' | |
], function ( | |
DashboardIndexRouter, | |
DashboardIndexController, | |
DashboardModuleLayout | |
) { | |
"use strict"; |