I'm not quite sure how to query and define a directive using the requirejs module.
this is my code for a file containing directives of the /locationBtn.js directive
define(['Zf2NVIApp'], function (Zf2NVIApp) { 'use strict'; Zf2NVIApp.directive('locationBtn', function() { return { template: '<div></div>', restrict: 'E', link: function postLink(scope, element, attrs) { console.log("we are in the location btn module"); element.text('this is the locationBtn directive'); } }; }); });
this is the code of my main.js file
require.config({ shim: { }, paths: { angular: 'vendor/angular', jquery: 'vendor/jquery.min', locationBtn: 'directives/locationBtn' } }); require(['Zf2NVIApp', 'locationBtn'], function (app, locationBtn) {
angularjs requirejs
Edgar martinez
source share