Dennis Monsewicz

Results 6 issues of Dennis Monsewicz

Here is the full stack trace from `Sidekiq` ``` ruby Athlete Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."type" IN ('Athlete') AND "users"."id" = $1 LIMIT 1 [["id", 58]] 2013-08-17T02:34:57Z...

I am beginning to setup a project to use `croppr.js` where app is bundled with Webpack, but keep running into the following error when webpack runs: ```js ERROR in ./node_modules/croppr/dist/croppr.js...

Reworked `destroy` method to be a little more global, so it can be called by itself from the smoke object. The use case was if using the `smoke` library with...

Is there anyway to access the `destroy` method globally using the `smoke` object? For example, if you are using the smoke library in Backbone and wanted to destroy the smoke...

I had to manually install the package by placing the Pagination javascript file in my /lib directory, and it works but when I use the 'bootstrap' styles, the current page...

I am limiting my collection to 500 records, but when I use: ``` Meteor.subscribe('jobs', function onReady(){ Session.set('jobsLoaded', true); }); Template[templateName].helpers({ selected: function(){ return Session.get('perPage'); }, jobsReady: function() { return Session.equals('jobsLoaded',...