Remove services that cannot be searched from search dropdown. Refactoring and additional unit tests.
9 lines
238 B
JavaScript
9 lines
238 B
JavaScript
// jQuery Mobile configuration options
|
|
// see: http://api.jquerymobile.com/1.3/global-config/
|
|
$(document).bind('mobileinit', function () {
|
|
$.extend($.mobile, {
|
|
ajaxEnabled: false,
|
|
hashListeningEnabled: false
|
|
})
|
|
})
|