Questions tagged [minifiedjs]

Minified.js is a client-side JavaScript library, comparable to jQuery and MooTools in scope. Its features include DOM manipulation, animation, events, cookies and HTTP requests

From the documentation:

•Tiny JavaScript framework (<4kb gzipped)
◦7-8 times smaller than jQuery or MooTools
◦allows even smaller builds using the Builder tool

•Complete Feature Set
◦Nearly all features that jQuery and MooTools have.
◦Some extra features that jQuery and/or MooTools do not have.
◦Flexible enough to make up for missing features

•No Magic ◦Aims to be predictable
◦Never changes built-ins, no polyfills, no emulated properties
◦Simple, clean API without surprises

Project website

34 questions
1
vote
1 answer

using squishit and rendering external minifiedjs at the end of body element

I have master page and child page in my aplication. At runtime i determine the js & css to be included in master page pre-init method and render the js & css using squish it (bundlecss.AsCached & bundlecss.Render) method. In master page Head control…
1
vote
2 answers

Update text content with minified.js

What is the right way to update text of a element with minifiedjs? E.g. Old text I have tried logical: $('.myRef').text('New text'); But it doesn't work.
udalmik
  • 7,838
  • 26
  • 40
0
votes
0 answers

How to use uploaded artifacts (source map) on sentry

I managed to generate the source map of my minified javascript and uploaded to Sentry as an artifact e.g. 1.0.0.0 Sentry.init({ dsn: "blah", beforeSend: (event, hint) => { const error = hint.originalException; if (error &&…
LittleFunny
  • 8,155
  • 15
  • 87
  • 198
0
votes
0 answers

Uncaught SyntaxError: The requested module does not provide an export named 'Drawflow' only on minified JS

I'm trying to use the DrawFlow library from here: https://github.com/jerosoler/Drawflow I managed to make it work using the source file (src/drawflow.js) with the following code: my question is what is the ".js?m=1497883755" in this? what is the use of…
Web7
  • 126
  • 1
  • 12
0
votes
0 answers

Can we edit minified javascript files directly in Visual Studio?

I have two js files in my project. Customvalidation.js and CustomValidation.min.js. I completed my project and during release I had a change in js . So , here Can I directly go ahead and edit minified file or CustomValidation.js first I have to do ?…
Aneez
  • 157
  • 1
  • 2
  • 14
0
votes
0 answers

Is it okay to delete *.min.js.map while minifying the js files?

I am using WEB ESSENTILS extension of Visual Studio for minification of JS files. After minifying the js file I am getting a .map extension file linked with the minified version of that js file. So the size of .min.js + .map > .js file. So I am…
0
votes
2 answers

Purpose of Function returns only boolean

Somewhere in jQuery I have seen 2 functions that returns only boolean like below. function h(){ return !0; } function r(){ return !1; } What is the purpose of doing this, while Boolean can be written directly?
shyammakwana.me
  • 5,562
  • 2
  • 29
  • 50
0
votes
0 answers

Error: [$injector:unpr] Unknown provider: routeFilterProvider <- routeFilter (coffeescript)

Basically I want to create routes for my angular app from a CMS without a deployment. So I am trying to do something similar to this tutorial: http://gonzalo123.com/2014/06/30/setting-up-states-from-a-json-file-in-angularjs-applications/. …
ruby_newbie
  • 3,190
  • 3
  • 18
  • 29