cobuild-angular-stack
Version:
Base stack angular sass jade gulp
29 lines (26 loc) • 941 B
JavaScript
/**
* Created by garusis on 16/06/16.
*/
(function (module) {
'use strict';
var ROKK3RLABS_ONBOARDING_CONSTANTS = {
directives: {
stepsBuilder: {
templateUrl: 'partials/onboarding.step-builder-template.html',
addStepText: 'Add Step'
},
step: {
templateUrl: 'partials/onboarding.step-template.html',
editor: {
height: 600
}
},
displayStep: {
templateUrlToCustom: 'partials/onboarding.custom-step-display.html',
templateUrlToPredefined: 'partials/onboarding.template-step-display.html'
}
}
};
module
.constant('ROKK3RLABS_ONBOARDING_CONSTANTS', ROKK3RLABS_ONBOARDING_CONSTANTS);
})(angular.module('rokk3rlabs.onboarding', ['restangular', 'ui.bootstrap', 'uib-util.sortable-tabs', 'ckeditor']));