mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
505 B
17 lines
505 B
module Docs
|
|
class JqueryMobile < Jquery
|
|
self.name = 'jQuery Mobile'
|
|
self.slug = 'jquerymobile'
|
|
self.version = '1.4.0'
|
|
self.base_url = 'http://local.api.jquerymobile.com'
|
|
self.root_path = '/category/all'
|
|
|
|
html_filters.insert_before 'jquery/clean_html', 'jquery_mobile/entries'
|
|
|
|
options[:root_title] = 'jQuery Mobile'
|
|
options[:skip] = %w(/tabs /theme)
|
|
options[:skip_patterns].concat [/\A\/icons/]
|
|
options[:replace_paths] = { '/select/' => '/selectmenu' }
|
|
end
|
|
end
|