You need to add the slider as dependent of myapp then use myapp in the page declaration, so that myApp will have all elements(directives/controllers/filters etc) added in slider app also.
var myApp = angular.module('myApp', ['ui.slider']);
then
<html ng-app="myApp">
Demo: Plunker