Skip to content
This repository has been archived by the owner on Oct 5, 2019. It is now read-only.

Commit

Permalink
Merge pull request #130 from super-ienien/patch-1
Browse files Browse the repository at this point in the history
change the require string
  • Loading branch information
seiyria committed May 10, 2016
2 parents 4b02639 + da07239 commit 601840d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions slider.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(function(factory) {
if (typeof define === 'function' && define.amd) {
define(['angular', 'bootstrapSlider'], factory);
define(['angular', 'bootstrap-slider'], factory);
} else if (typeof module === 'object' && module.exports) {
module.exports = factory(require('angular'), require('bootstrapSlider'));
module.exports = factory(require('angular'), require('bootstrap-slider'));
} else if (window) {
factory(window.angular, window.Slider);
}
Expand Down Expand Up @@ -229,4 +229,4 @@ angular.module('ui.bootstrap-slider', [])
};
}])
;
});
});

0 comments on commit 601840d

Please sign in to comment.