mirror of
https://github.com/2ec0b4/kaamelott-soundboard.git
synced 2025-12-08 15:43:24 +00:00
Ajoute des boutons de partage sur les réseaux sociaux
This commit is contained in:
@@ -5,10 +5,11 @@ requirejs(['main'], function () {
|
||||
'jquery',
|
||||
'marionette',
|
||||
'underscore',
|
||||
'likely',
|
||||
'controllers/soundboard',
|
||||
'views/main'
|
||||
],
|
||||
function(Backbone, $, Marionette, _,
|
||||
function(Backbone, $, Marionette, _, Likely,
|
||||
SoundboardController,
|
||||
MainView) {
|
||||
"use strict";
|
||||
@@ -42,6 +43,8 @@ requirejs(['main'], function () {
|
||||
Backbone.history.start();
|
||||
App.trigger("backbone:history:start");
|
||||
}
|
||||
|
||||
likely.initiate();
|
||||
};
|
||||
|
||||
initialize();
|
||||
|
||||
@@ -5,6 +5,7 @@ requirejs.config({
|
||||
'backbone.radio': '/js/vendor/backbone/plugins/backbone.radio/backbone.radio.min',
|
||||
'hbs': '/js/vendor/require/plugins/require-handlebars-plugin/hbs',
|
||||
'jquery': '/js/vendor/jquery/jquery-1.12.2.min',
|
||||
'likely': '/js/vendor/likely/likely',
|
||||
'marionette': '/js/vendor/marionette/backbone.marionette.min',
|
||||
'underscore': '/js/vendor/underscore/underscore-min'
|
||||
},
|
||||
@@ -13,8 +14,11 @@ requirejs.config({
|
||||
"hbs/underscore": "underscore"
|
||||
},
|
||||
shim: {
|
||||
'likely' : {
|
||||
exports: 'likely'
|
||||
},
|
||||
'marionette' : {
|
||||
deps: ['jquery', 'backbone', 'underscore']
|
||||
deps: ['jquery', 'backbone', 'underscore']
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user