The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
0answers
161 views

Inlining require.js text! using Grunt

I've been experimenting with Grunt and Require JS this afternoon. I'm a big fan of the text module and use it to bring in my templates. In non-Grunt based projects I used the inlineText and ...
2
votes
1answer
56 views

Is there a more concise way of including dependencies in RequireJS

Suppose I have a module that starts like the following: define(['jquery', 'actions', 'util', 'text!../templates/dialog.html!strip', 'text!../templates/requestRow.html!strip', ...
1
vote
0answers
128 views

requirejs text plugin interpret html as script

Im using the require.js text plugin (https://github.com/requirejs/text) to load my html modules from the server. The server has an other host so a allow coss-domain-request by useing Xhr in the ...
1
vote
1answer
68 views

RequireJS text plugin adding '.js' to file name but on same domain

I have an optimized RequireJS setup using the text plugin. I seem to be running into the '.js' filename being added to my module. I'm looking at this in Firefox 17. I read this entry, but I am ...
0
votes
0answers
242 views

RequireJS text plugin - error when loading HTML template

I'm using RequireJS with the text plugin for my HTML-templates. define( [ 'text!./../../templates/twitterTemplate.html', 'jquery', 'underscore', 'backbone' ], ...
0
votes
1answer
135 views

requirejs optimization error: Loader plugin did not call the load callback in the build: text

Using require.js with the requirejs api (r.js) for optimization/minification and needed to reorganize our directory structure (and, therefore, re-map everything in the requirejs config file/etc). ...
3
votes
2answers
367 views

Invoke the text plugin from requirejs mapping

I'm writing a web app using TypeScript, Backbone, and Mustache. I want to use Requirejs for dependency loading. I'm also using the Web Essentials visual studio plugin for TypeScript with the AMD ...
1
vote
1answer
374 views

Requirejs Optimize project to single file

With a Build configuration as below, Why am i seeing all the files in source directory + minified application file when i run the deploy command specified below. I only need a single js file that will ...
0
votes
1answer
74 views

Configure location of text.js

I'm using requirejs with the text plugin. By default, requirejs assumes text.js lives in your baseUrl. However, I want to keep it somewhere else. Where/how/when do I need to configure requirejs?
2
votes
1answer
235 views

In Require.js text plugin template, how should I provide javascript methods?

I'm using Require.js and the text plugin. I'm trying to create a template that has something like this: <%= somefunction(displayvalue) %> I need the somefunction(...) to be available to ...
9
votes
1answer
289 views

RequireJS - Isolating jQuery versions and plugins within contexts

I have a project which utilizes multiple require contexts and dynamically loaded jQuery versions and plugins. (The jQuery versions will be centrally sourced and will not be inlined). jQuery integrity ...
1
vote
0answers
85 views

How to point requireJS text plugin to an MVC action

I want to load HTML from an ASP.NET MVC 4 action. So full URL looks like: http://localhost:7588/en/Dialogs/AclManager Here is how I declare dependency: define(['jquery', 'text!AclManager'], ...