├── .babelrc ├── .codeclimate.yml ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── build ├── helper │ ├── _grunt │ │ ├── clean.js │ │ ├── comments.js │ │ ├── copy.js │ │ ├── eslint.js │ │ ├── jsdoc.js │ │ ├── strip_code.js │ │ ├── uglify.js │ │ ├── usebanner.js │ │ └── webpack.js │ ├── config.js │ └── jsdoc.json ├── karma.es6.config.js ├── karma.jquery.config.js ├── webpack.config.dev.js ├── webpack.config.js └── webpack.config.prod.js ├── dist ├── device.selector.class.js ├── jquery.device.selector.js ├── jquery.device.selector.min.js ├── js.device.selector.min.js └── js.device.selector.min.js.map ├── docs ├── index.html ├── jsdoc │ ├── DeviceSelector.html │ ├── device.selector.class.js.html │ ├── external-_jQuery.fn.deviceSelector_.html │ ├── external-_jQuery.fn_.html │ ├── fonts │ │ ├── OpenSans-Bold-webfont.eot │ │ ├── OpenSans-Bold-webfont.svg │ │ ├── OpenSans-Bold-webfont.woff │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ ├── OpenSans-Italic-webfont.eot │ │ ├── OpenSans-Italic-webfont.svg │ │ ├── OpenSans-Italic-webfont.woff │ │ ├── OpenSans-Light-webfont.eot │ │ ├── OpenSans-Light-webfont.svg │ │ ├── OpenSans-Light-webfont.woff │ │ ├── OpenSans-LightItalic-webfont.eot │ │ ├── OpenSans-LightItalic-webfont.svg │ │ ├── OpenSans-LightItalic-webfont.woff │ │ ├── OpenSans-Regular-webfont.eot │ │ ├── OpenSans-Regular-webfont.svg │ │ └── OpenSans-Regular-webfont.woff │ ├── index.html │ ├── jquery.device.selector.js.html │ ├── scripts │ │ ├── linenumber.js │ │ └── prettify │ │ │ ├── Apache-License-2.0.txt │ │ │ ├── lang-css.js │ │ │ └── prettify.js │ └── styles │ │ ├── jsdoc-default.css │ │ ├── prettify-jsdoc.css │ │ └── prettify-tomorrow.css └── static │ ├── css │ └── style.css │ ├── img │ └── .placeholder │ └── js │ ├── jquery │ └── dist │ │ └── jquery.min.js │ └── js.device.selector │ └── jquery.device.selector.min.js ├── example ├── server.js ├── static │ ├── css │ │ └── style.css │ └── img │ │ └── .placeholder └── views │ ├── index.html │ └── layout.html ├── package-lock.json ├── package.json ├── src ├── index.html ├── index.jquery.html ├── index.jquery.min.test.html ├── index.jquery.test.html ├── index.js ├── index.test.html └── js │ ├── device.selector.class.js │ ├── device.selector.class.test.js │ ├── jquery.device.selector.js │ └── jquery.device.selector.test.js └── tests ├── casper ├── casper.helper.js └── init.js └── screenshots ├── desktop.png ├── largedesktop.png ├── mobile.png └── tablet.png /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "modules": false, 5 | "targets": { 6 | "browsers": ["> 1%", "last 2 versions", "not ie <= 8"] 7 | } 8 | }], 9 | "stage-2" 10 | ], 11 | "env": { 12 | "test": { 13 | "presets": ["env", "stage-2"], 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | exclude_patterns: 2 | - "tests/" 3 | - "build/" 4 | - "coverage/" 5 | - "dist/" 6 | - "docs/" 7 | - "tests/" 8 | - "example/" 9 | - "node_modules/" 10 | - "." 11 | - "Gruntfile.js" 12 | - "jsdoc.json" 13 | - "*.md" 14 | - "karma.*" 15 | - "LICENSE" 16 | - "package*" 17 | - "webpack.*" 18 | eslint: 19 | enabled: true 20 | config: 21 | config: .eslintrc 22 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.{json,yml}] 12 | indent_size = 2 13 | 14 | [*.md] 15 | trim_trailing_whitespace = false 16 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["eslint:recommended", "google"], 3 | "env": { 4 | "es6": true, 5 | "jasmine": true, 6 | "jquery": true, 7 | "qunit": true, 8 | "node": true, 9 | "browser": true 10 | }, 11 | "parserOptions": { 12 | "sourceType": "module", 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .sass-cache/ 3 | node_modules/ 4 | bower_components/ 5 | coverage/ 6 | !docs/coverage/** 7 | TODO.md 8 | Thumbs.db 9 | .DS_Store 10 | *.psd 11 | *.sketch 12 | *.lock 13 | *.iml 14 | 15 | # directories 16 | Source/ 17 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | example/ 3 | node_modules/ 4 | static/ 5 | target/ 6 | tests/ 7 | coverage/ 8 | .git 9 | .babelrc 10 | .editorconfig 11 | .eslintrc 12 | .gitignore 13 | .travis.yml 14 | .codeclimate.yml 15 | .npmrc 16 | .npmignore 17 | Gruntfile.js 18 | package-lock.json 19 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | env: 2 | global: 3 | - CC_TEST_REPORTER_ID=c6b6d69b3dd1760344f6072d2a115027c284a49d706f2e5195818094ea6895ad 4 | language: node_js 5 | node_js: 6 | - "10" 7 | - "12" 8 | - "14" 9 | before_script: 10 | - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter 11 | - chmod +x ./cc-test-reporter 12 | - ./cc-test-reporter before-build 13 | script: 14 | - npm test 15 | after_script: 16 | - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT 17 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## 1.0.1 4 | * refactor es6 module 5 | * refactor build, tests and coverage 6 | 7 | ## 1.0.0 8 | ### Feature 9 | * jQuery Device Selector Plugin 10 | * get current device type (breakpoint) 11 | * get current display type (retina e.g.) 12 | * defaults and custom settings 13 | * es6 Device Selector Class 14 | * get current device type (breakpoint) 15 | * get current display type (retina e.g.) 16 | * defaults and custom settings 17 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Gruntfile.js 3 | */ 4 | 5 | 'use strict'; 6 | let config = require('./build/helper/config'); 7 | config.options.pkg = require('./package.json'); 8 | 9 | module.exports = function(grunt) { 10 | // load only used tasks and add fallbacks for those which cannot be find 11 | require('jit-grunt')(grunt, { 12 | 'replace': 'grunt-text-replace', 13 | 'usebanner': 'grunt-banner', 14 | 'comments': 'grunt-stripcomments', 15 | 'strip_code': 'grunt-strip-code', 16 | }); 17 | // measures the time each task takes 18 | require('time-grunt')(grunt); 19 | 20 | // Load grunt configurations automatically 21 | let configs = require('load-grunt-configs')(grunt, config.options); 22 | 23 | // Define the configuration for all the tasks 24 | grunt.initConfig(configs); 25 | 26 | /* 27 | * TASKS 28 | */ 29 | 30 | grunt.registerTask('coverage', [ 31 | 'copy:coverageEs6', 32 | 'copy:icovEs6', 33 | 'copy:coverageJquery', 34 | 'copy:icovJquery', 35 | ]); 36 | 37 | grunt.registerTask('build', [ 38 | 'eslint', 39 | 'webpack', 40 | 'uglify', 41 | ]); 42 | 43 | grunt.registerTask('dist', [ 44 | 'clean', 45 | 'build', 46 | 'copy:dist', 47 | 'strip_code', 48 | 'comments', 49 | 'usebanner', 50 | 'jsdoc', 51 | 'copy:static', 52 | ]); 53 | 54 | grunt.registerTask('default', ['dist']); 55 | }; 56 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Simon Gattner 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![tests][tests]][tests-url] 2 | [![coverage][coverage]][coverage-url] 3 | [![maintainability][maintainability]][maintainability-url] 4 | 5 | # js.device.selector 6 | ES6 class and jQuery Plugin which get the current Device Type and Display Type of a Browser while making CSS Breakpoints available in JavaScript. 7 | 8 | This solution make it possible to define your breakpoints only once (in CSS) and pass them automatically into JavaScript. 9 | 10 | ## npm 11 | [![npm][npm]][npm-url] 12 | ``` 13 | npm install --save js.device.selector 14 | ``` 15 | 16 | ## Example 17 | 18 | ### jQuery plugin 19 | 20 | Style for hidden Markup that make CSS Breakpoints available in JavaScript via Media-Queries and visibility. 21 | 22 | ```html 23 | 64 | ``` 65 | 66 | Markup which make the visibility of Breakpoints available in JavaScript. The Markup should be added right before the closing body tag. 67 | 68 | ```html 69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 | ``` 77 | 78 | Initialise the jQuery Plugin and sample usage. 79 | ```html 80 | 81 | 82 | 88 | ``` 89 | 90 | ### jQuery Plugin Custom 91 | 92 | Use your own flavored Markup and pass your own settings to the Device Selector. 93 | 94 | ```html 95 | 136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 | 171 | ``` 172 | 173 | ### ES6 class 174 | 175 | Style for hidden Markup that make CSS Breakpoints available in JavaScript via Media-Queries and visibility. 176 | 177 | ```html 178 | 219 | ``` 220 | 221 | Markup which make the visibility of Breakpoints available in JavaScript. The Markup should be added right before the closing body tag. 222 | 223 | ```html 224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 | ``` 232 | 233 | Import the ES6 Class and sample usage. 234 | 235 | ```js 236 | import DeviceSelector from './js/device.selector.class'; 237 | const deviceSelector = new DeviceSelector(); 238 | 239 | console.log($.fn.deviceSelector.getDeviceType()); // return m || t || md || lg 240 | document.querySelector('#deviceType').innerHTML = deviceSelector.deviceType(); 241 | document.querySelector('#displayType').innerHTML = deviceSelector.displayType(); 242 | 243 | ``` 244 | 245 | ### ES6 Class Custom 246 | 247 | ```html 248 | 289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 | ``` 299 | 300 | ```js 301 | import DeviceSelector from './js/device.selector.class'; 302 | const deviceSelector = new DeviceSelector({ 303 | 'selector': { 304 | 'name': '.namespace__m-device-selector', 305 | 'parent': { 306 | 'name': 'body', 307 | }, 308 | 'items': { 309 | 'name': '.namespace__m-device-selector__item', 310 | }, 311 | }, 312 | 'device': { 313 | 'selector': { 314 | 'name': 'data-ds-devicetype', 315 | }, 316 | }, 317 | 'display': { 318 | 'selector': { 319 | 'name': 'data-ds-displaytype', 320 | }, 321 | }, 322 | }); 323 | 324 | console.log($.fn.deviceSelector.getDeviceType()); // return m || t || md || lg 325 | document.querySelector('#deviceType').innerHTML = deviceSelector.deviceType(); 326 | document.querySelector('#displayType').innerHTML = deviceSelector.displayType(); 327 | 328 | ``` 329 | 330 | ## Documentation 331 | * [Example](https://exiguus.github.io/js.device.selector/) 332 | * [jsDoc](https://exiguus.github.io/js.device.selector/jsdoc/) 333 | * [Coverage ES6](https://exiguus.github.io/js.device.selector/jsdoc/coverage/es6/) 334 | * [Coverage jQuery](https://exiguus.github.io/js.device.selector/jsdoc/coverage/jquery/) 335 | 336 | [tests]: https://img.shields.io/travis/exiguus/js.device.selector/master.svg 337 | [tests-url]: https://travis-ci.org/exiguus/js.device.selector 338 | 339 | [maintainability]: 340 | https://api.codeclimate.com/v1/badges/587cd2b7452371bbd8a6/maintainability 341 | [maintainability-url]: 342 | https://codeclimate.com/github/exiguus/js.device.selector/maintainability 343 | 344 | [coverage]: 345 | https://api.codeclimate.com/v1/badges/587cd2b7452371bbd8a6/test_coverage 346 | [coverage-url]: 347 | https://codeclimate.com/github/exiguus/js.device.selector/test_coverage 348 | 349 | [npm]: https://img.shields.io/npm/v/js.device.selector.svg 350 | [npm-url]: https://npmjs.com/package/js.device.selector 351 | 352 | [licenses-url]: https://img.shields.io/npm/l/js.device.selector.svg 353 | [licenses]: https://github.com/exiguus/js.device.selector 354 | -------------------------------------------------------------------------------- /build/helper/_grunt/clean.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist: [ 3 | '<%= paths.dist %>/**', 4 | '<%= paths.jsdocs %>/**', 5 | '<%= paths.coverage %>/**', 6 | ], 7 | }; 8 | -------------------------------------------------------------------------------- /build/helper/_grunt/comments.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist: { 3 | options: { 4 | singleline: true, 5 | multiline: true, 6 | keepSpecialComments: true, 7 | }, 8 | src: ['<%= paths.dist %>/jquery.*.min.js'], 9 | }, 10 | }; 11 | -------------------------------------------------------------------------------- /build/helper/_grunt/copy.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist: { 3 | cwd: '<%= paths.dev %>/js/', 4 | dest: '<%= paths.dist %>/', 5 | expand: true, 6 | src: [ 7 | 'jquery.<%= name.plugin %>.js', 8 | '<%= name.plugin %>.module.js', 9 | '<%= name.plugin %>.class.js', 10 | ], 11 | }, 12 | coverageEs6: { 13 | cwd: '<%= paths.coverage %>/es6/report-html/', 14 | dest: '<%= paths.jsdocs %>/<%= paths.coverage %>/es6/', 15 | expand: true, 16 | src: [ 17 | '**', 18 | ], 19 | }, 20 | coverageJquery: { 21 | cwd: '<%= paths.coverage %>/jquery/report-html/', 22 | dest: '<%= paths.jsdocs %>/<%= paths.coverage %>/jquery/', 23 | expand: true, 24 | src: [ 25 | '**', 26 | ], 27 | }, 28 | icovEs6: { 29 | cwd: '<%= paths.coverage %>/es6/report-Icov/', 30 | dest: '<%= paths.coverage %>/es6/', 31 | expand: true, 32 | src: [ 33 | 'Icov.info', 34 | ], 35 | }, 36 | icovJquery: { 37 | cwd: '<%= paths.coverage %>/jquery/report-Icov/', 38 | dest: '<%= paths.coverage %>/jquery/', 39 | expand: true, 40 | src: [ 41 | 'Icov.info', 42 | ], 43 | }, 44 | static: { 45 | cwd: '<%= paths.static %>/', 46 | dest: '<%= paths.jsdocs %>/<%= paths.static %>/', 47 | expand: true, 48 | src: [ 49 | '**', 50 | ], 51 | }, 52 | }; 53 | -------------------------------------------------------------------------------- /build/helper/_grunt/eslint.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | options: { 3 | configFile: './.eslintrc', 4 | }, 5 | target: '<%= paths.dev %>/js/*.js', 6 | }; 7 | -------------------------------------------------------------------------------- /build/helper/_grunt/jsdoc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist: { 3 | src: ['src/js/*.js'], 4 | options: { 5 | destination: '<%= paths.jsdocs %>', 6 | readme: 'README.md', 7 | }, 8 | }, 9 | }; 10 | -------------------------------------------------------------------------------- /build/helper/_grunt/strip_code.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | options: { 3 | start_comment: '/* start: test-code */', 4 | end_comment: '/* end: test-code */', 5 | }, 6 | dist: { 7 | src: ['<%= paths.dist %>/*.js'], 8 | }, 9 | }; 10 | -------------------------------------------------------------------------------- /build/helper/_grunt/uglify.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | options: { 3 | compress: { 4 | global_defs: { 5 | 'DEBUG': false, 6 | }, 7 | dead_code: true, 8 | }, 9 | sourceMap: false, 10 | }, 11 | dist: { 12 | files: [ 13 | { 14 | expand: true, 15 | cwd: '<%= paths.dev %>/js/', 16 | src: 'jquery.<%= name.plugin %>.js', 17 | dest: '<%= paths.dist %>', 18 | rename: function(dst, src) { 19 | // To keep the source js files and make new files as `*.min.js`: 20 | return dst + '/' + src.replace('.js', '.min.js'); 21 | }, 22 | }, 23 | { 24 | expand: true, 25 | cwd: '<%= paths.dist %>/js/', 26 | src: '<%= name.plugin %>.min.js', 27 | dest: '<%= paths.dist %>', 28 | }, 29 | ], 30 | }, 31 | }; 32 | -------------------------------------------------------------------------------- /build/helper/_grunt/usebanner.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist: { 3 | options: { 4 | position: 'top', 5 | linebreak: true, 6 | banner: '<%= banner %>', 7 | }, 8 | files: [ 9 | { 10 | cwd: '<%= paths.dist %>/', 11 | dest: '<%= paths.dist %>/', 12 | expand: true, 13 | src: ['jquery.*.min.js'], 14 | }, 15 | ], 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /build/helper/_grunt/webpack.js: -------------------------------------------------------------------------------- 1 | const webpackProdConfig = require('../../webpack.config.prod'); 2 | 3 | module.exports = { 4 | options: { 5 | stats: process.env.NODE_ENV === 'production', 6 | }, 7 | prod: webpackProdConfig, 8 | }; 9 | -------------------------------------------------------------------------------- /build/helper/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Configuration file 3 | */ 4 | let config = module.exports; 5 | 6 | config.options = { 7 | config: { 8 | // in this directory you can find your grunt config tasks 9 | src: 'build/helper/_grunt/*.js', 10 | }, 11 | paths: { 12 | // helpers folder with tasks 13 | helper: 'build/helper', 14 | // dev/working folder 15 | dev: 'src', 16 | // dist folder with minified and optimized files 17 | dist: 'dist', 18 | // doc folder jsdoc3 19 | jsdocs: 'docs/jsdoc', 20 | // src folder 21 | src: 'src', 22 | // coverage report 23 | coverage: 'coverage', 24 | // static files 25 | static: 'static', 26 | }, 27 | name: { 28 | plugin: 'device.selector', 29 | }, 30 | banner: "/* !\n" + // eslint-disable-line quotes 31 | " * <%= pkg.name %> <%= pkg.version %>\n" + // eslint-disable-line quotes, max-len 32 | " * <%= pkg.repository.url %>\n" + // eslint-disable-line quotes 33 | " *\n" + // eslint-disable-line quotes 34 | " * <%= pkg.author %>\n" + // eslint-disable-line quotes 35 | " * Released under the <%= pkg.license %> license\n" + // eslint-disable-line quotes, max-len 36 | " *\n" + // eslint-disable-line quotes 37 | " * Date: <%= grunt.template.today('yyyy-mm-dd HH:mm:ss') %>\n" + // eslint-disable-line quotes, max-len 38 | " */", // eslint-disable-line quotes 39 | }; 40 | -------------------------------------------------------------------------------- /build/helper/jsdoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": { 3 | "allowUnknownTags": true 4 | }, 5 | "source": { 6 | "includePattern": ".+\\.js(doc|x)?$", 7 | "excludePattern": "(^|\\/|\\\\)_" 8 | }, 9 | "plugins": [], 10 | "templates": { 11 | "cleverLinks": false, 12 | "monospaceLinks": false, 13 | "default": { 14 | "outputSourceFiles": true 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /build/karma.es6.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack'); 2 | 3 | // Is the current build a development build 4 | const IS_DEV = (process.env.NODE_ENV === 'dev'); 5 | 6 | module.exports = (config) => { 7 | config.set({ 8 | plugins: [ 9 | 'karma-phantomjs-launcher', 10 | 'karma-coverage', 11 | 'karma-jasmine', 12 | 'karma-webpack', 13 | ], 14 | frameworks: ['jasmine'], 15 | files: [{ 16 | pattern: '../src/js/*.class.test.js', 17 | watched: false, 18 | }], 19 | browsers: ['PhantomJS'], 20 | reporters: ['progress', 'coverage'], 21 | preprocessors: { 22 | '../src/js/*.class.test.js': ['webpack'], 23 | }, 24 | coverageReporter: { 25 | dir: '../coverage/es6', 26 | reporters: [ 27 | {type: 'html', subdir: 'report-html'}, 28 | {type: 'lcov', subdir: 'report-lcov'}, 29 | {type: 'cobertura', subdir: '.', file: 'cobertura.txt'}, 30 | {type: 'lcovonly', subdir: '.', file: 'report-lcovonly.txt'}, 31 | {type: 'teamcity', subdir: '.', file: 'teamcity.txt'}, 32 | {type: 'text', subdir: '.', file: 'text.txt'}, 33 | {type: 'text-summary', subdir: '.', file: 'text-summary.txt'}, 34 | ], 35 | }, 36 | webpack: { 37 | mode: 'production', 38 | devtool: '#inline-source-map', 39 | module: { 40 | rules: [ 41 | // BABEL 42 | { 43 | test: /\.js$/, 44 | exclude: /(node_modules)/, 45 | use: [ 46 | { 47 | loader: 'babel-loader', 48 | }, 49 | { 50 | loader: 'istanbul-instrumenter-loader', 51 | options: { 52 | esModules: true, 53 | }, 54 | }, 55 | ], 56 | }, 57 | ], 58 | }, 59 | plugins: [ 60 | new webpack.DefinePlugin({ 61 | IS_DEV: IS_DEV, 62 | }), 63 | ], 64 | }, 65 | }); 66 | }; 67 | -------------------------------------------------------------------------------- /build/karma.jquery.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function(config) { 2 | config.set({ 3 | basePath: '', 4 | plugins: [ 5 | 'karma-phantomjs-launcher', 6 | 'karma-coverage', 7 | 'karma-qunit', 8 | 'karma-jquery', 9 | ], 10 | frameworks: ['qunit', 'jquery-3.1.1'], 11 | files: [ 12 | '../src/js/jquery.device.selector.js', 13 | '../src/js/jquery.device.selector.test.js', 14 | ], 15 | browsers: ['PhantomJS'], 16 | reporters: ['progress', 'coverage'], 17 | preprocessors: { 18 | '../src/js/jquery.device.selector.js': ['coverage'], 19 | }, 20 | coverageReporter: { 21 | dir: '../coverage/jquery', 22 | reporters: [ 23 | {type: 'html', subdir: 'report-html'}, 24 | {type: 'lcov', subdir: 'report-lcov'}, 25 | {type: 'cobertura', subdir: '.', file: 'cobertura.txt'}, 26 | {type: 'lcovonly', subdir: '.', file: 'report-lcovonly.txt'}, 27 | {type: 'teamcity', subdir: '.', file: 'teamcity.txt'}, 28 | {type: 'text', subdir: '.', file: 'text.txt'}, 29 | {type: 'text-summary', subdir: '.', file: 'text-summary.txt'}, 30 | ], 31 | }, 32 | }); 33 | }; 34 | -------------------------------------------------------------------------------- /build/webpack.config.dev.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | const merge = require('webpack-merge'); 4 | const webpackConfig = require('./webpack.config'); 5 | 6 | const webpack = require('webpack'); 7 | const HtmlWebpackPlugin = require('html-webpack-plugin'); 8 | 9 | // Is the current build a development build 10 | const IS_DEV = (process.env.NODE_ENV === 'dev'); 11 | 12 | const dirApp = path.join(__dirname, '../src'); 13 | 14 | module.exports = merge(webpackConfig, { 15 | 16 | devtool: '#inline-source-map', // or 'eval' 17 | 18 | devServer: { 19 | host: '0.0.0.0', 20 | port: 8090, 21 | }, 22 | 23 | output: { 24 | pathinfo: true, 25 | publicPath: '/', 26 | filename: '[name].js', 27 | }, 28 | 29 | plugins: [ 30 | new webpack.DefinePlugin({ 31 | IS_DEV: IS_DEV, 32 | }), 33 | 34 | new HtmlWebpackPlugin({ 35 | template: path.join(dirApp, 'index.html'), 36 | }), 37 | ], 38 | }); 39 | -------------------------------------------------------------------------------- /build/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | const dirNode = 'node_modules'; 4 | const dirApp = path.join(__dirname, '../src'); 5 | 6 | /** 7 | * Webpack Configuration 8 | */ 9 | module.exports = { 10 | 11 | entry: { 12 | // vendor: [ 13 | // 'lodash', 14 | // ], 15 | bundle: path.join(dirApp, 'index.js'), 16 | }, 17 | resolve: { 18 | modules: [ 19 | dirNode, 20 | dirApp, 21 | ], 22 | }, 23 | module: { 24 | rules: [ 25 | // BABEL 26 | { 27 | test: /\.js$/, 28 | loader: 'babel-loader', 29 | exclude: /(node_modules)/, 30 | options: { 31 | compact: false, 32 | }, 33 | }, 34 | // CSS 35 | { 36 | test: /\.css$/, 37 | use: ['style-loader', 'css-loader'], 38 | }, 39 | ], 40 | }, 41 | }; 42 | -------------------------------------------------------------------------------- /build/webpack.config.prod.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | const merge = require('webpack-merge'); 4 | const webpackConfig = require('./webpack.config'); 5 | 6 | const dirApp = path.join(__dirname, '../src'); 7 | 8 | module.exports = merge(webpackConfig, { 9 | 10 | entry: { 11 | // vendor: [ 12 | // 'lodash', 13 | // ], 14 | bundle: path.join(dirApp, 'js/device.selector.class.js'), 15 | }, 16 | 17 | devtool: 'source-map', // or 'eval' 18 | 19 | output: { 20 | // in the case of a "plain global browser library", this 21 | // will be used as the reference to our module that is 22 | // hung off of the window object. 23 | library: 'DeviceSelector', 24 | // We want webpack to build a UMD wrapper for our module 25 | libraryTarget: 'umd', 26 | umdNamedDefine: true, 27 | // jsonpScriptType: 'module', 28 | libraryExport: 'default', 29 | // the destination file name 30 | filename: 'js.device.selector.min.js', 31 | }, 32 | 33 | target: 'web', 34 | 35 | optimization: { 36 | splitChunks: { 37 | chunks: 'all', 38 | }, 39 | }, 40 | }); 41 | -------------------------------------------------------------------------------- /dist/device.selector.class.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileOverview device selector 3 | Get the current Display and Device Type of a Browser 4 | * @author Simon Gattner 5 | * @license MIT 6 | * @version 1.0.1 7 | */ 8 | export default class DeviceSelector { 9 | /* eslint-disable max-len */ 10 | /** 11 | * Get the current Display and Device Type of a Browser. 12 | * @class DeviceSelector 13 | * @classdesc Class to get current Display and Device Type. 14 | * @param {object} options The DeviceSelector options. 15 | * @param {string} options.selector The DeviceSelector selector options. 16 | * @param {string} options.selector.name The DeviceSelector selector name for initialisation. 17 | * @param {string} options.selector.items The DeviceSelector selector items for initialisation. 18 | * @param {string} options.selector.items.name The DeviceSelector selector items name for initialisation. 19 | * @param {string} options.selector.parent The DeviceSelector selector parent for initialisation. 20 | * @param {string} options.selector.parent.name The DeviceSelector selector parent name for initialisation. 21 | * @param {string} options.device The DeviceSelector device type options. 22 | * @param {string} options.device.selector The DeviceSelector device type selector for initialisation. 23 | * @param {string} options.device.selector.name The DeviceSelector device type selector name for initialisation. 24 | * @param {string} options.display The DeviceSelector display type options. 25 | * @param {string} options.display.selector The DeviceSelector display type selector for initialisation. 26 | * @param {string} options.display.selector.name The DeviceSelector display type selector name for initialisation. 27 | */ 28 | constructor(options) { 29 | /* eslint-enable max-len */ 30 | this._defaults = { 31 | selector: { 32 | name: '[data-device-selector]', 33 | items: { 34 | name: '[data-device-selector-item]', 35 | }, 36 | parent: { 37 | name: 'body', 38 | }, 39 | }, 40 | device: { 41 | selector: { 42 | name: 'data-device-selector-devicetype', 43 | }, 44 | }, 45 | display: { 46 | selector: { 47 | name: 'data-device-selector-displaytype', 48 | }, 49 | }, 50 | }; 51 | this._options = options || {}; 52 | this._settings = Object.assign({}, this._defaults, this._options); 53 | this._items = document.querySelectorAll( 54 | this._settings.selector.parent.name + ' ' + 55 | this._settings.selector.name + ' ' + 56 | this._settings.selector.items.name 57 | ); 58 | this._displayType = ( 59 | item = (this._items && this._items.length > 0) ? 60 | Array.prototype.slice.call(this._items) 61 | .filter((item) => 62 | (item.offsetWidth > 0 || item.offsetHeight > 0) && 63 | item.hasAttribute(this._settings.display.selector.name) 64 | ) : 65 | null 66 | ) => (item && item.length > 0) ? 67 | '' + item[0].getAttribute(this._settings.display.selector.name) : 68 | undefined; 69 | this._deviceType = ( 70 | item = (this._items && this._items.length > 0) ? 71 | Array.prototype.slice.call(this._items) 72 | .filter((item) => 73 | (item.offsetWidth > 0 || item.offsetHeight > 0) && 74 | item.hasAttribute(this._settings.device.selector.name) 75 | ) : 76 | null 77 | ) => (item && item.length > 0) ? 78 | '' + item[0].getAttribute(this._settings.device.selector.name) : 79 | undefined; 80 | } 81 | /** 82 | * Get the current Device Type; // Device Type. 83 | * @function DeviceSelector.deviceType 84 | * @param {string} string The current Device Type. 85 | * @return {string | undefined} The current Device Type Name. 86 | */ 87 | get deviceType() { 88 | return this._deviceType; 89 | } 90 | /** 91 | * Get the current Display Type. 92 | * @function DeviceSelector.displayType 93 | * @param {string} string The current Display Type. 94 | * @return {string | undefined} The current Display Type Name. 95 | */ 96 | get displayType() { 97 | return this._displayType; 98 | } 99 | } 100 | -------------------------------------------------------------------------------- /dist/jquery.device.selector.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileOverview device selector 3 | Get the current Display and Device Type of a Browser 4 | * @author Simon Gattner 5 | * @license MIT 6 | * @version 1.0.1 7 | */ 8 | 9 | /** 10 | * @external "jQuery.fn" 11 | * @see {@link http://docs.jquery.com/Plugins/Authoring The jQuery Plugin Guide} 12 | */ 13 | 14 | (function($) { 15 | 'use strict'; 16 | /* eslint-disable max-len */ 17 | /** 18 | * jQuery Methods to get the current Display and Device Type of a Browser 19 | * @function external:"jQuery.fn".deviceSelector 20 | * @external "jQuery.fn" 21 | * @external "jQuery.fn.deviceSelector" 22 | * @param {object} options The DeviceSelector options. 23 | * @param {string} options.selector The DeviceSelector selector options. 24 | * @param {string} options.selector.name The DeviceSelector selector name for initialisation. 25 | * @param {string} options.selector.items The DeviceSelector selector items for initialisation. 26 | * @param {string} options.selector.items.name The DeviceSelector selector items name for initialisation. 27 | * @param {string} options.selector.parent The DeviceSelector selector parent for initialisation. 28 | * @param {string} options.selector.parent.name The DeviceSelector selector parent name for initialisation. 29 | * @param {string} options.device The DeviceSelector device type options. 30 | * @param {string} options.device.selector The DeviceSelector device type selector for initialisation. 31 | * @param {string} options.device.selector.name The DeviceSelector device type selector name for initialisation. 32 | * @param {string} options.display The DeviceSelector display type options. 33 | * @param {string} options.display.selector The DeviceSelector display type selector for initialisation. 34 | * @param {string} options.display.selector.name The DeviceSelector display type selector name for initialisation. 35 | */ 36 | /* eslint-enable max-len */ 37 | $.fn.deviceSelector = function(options) { 38 | $.fn.deviceSelector._deviceType = undefined; 39 | $.fn.deviceSelector._displayType = undefined; 40 | 41 | var _settings = // eslint-disable-line no-var 42 | $.extend(true, $.fn.deviceSelector.defaults, options); 43 | 44 | var _parent = // eslint-disable-line no-var 45 | (this.length > 0) ? this : 46 | $(_settings.selector.parent.name); 47 | 48 | // console.log(parent.find(_settings.selector.item.name)) 49 | 50 | $.each(_parent, function() { 51 | var _this = $(this); // eslint-disable-line no-var, no-invalid-this 52 | var selector = // eslint-disable-line no-var 53 | _this.find(_settings.selector.name); 54 | var visibleSelectorItems = // eslint-disable-line no-var 55 | selector.find(_settings.selector.items.name + ':visible'); 56 | 57 | $.each(visibleSelectorItems, function() { 58 | var _this = $(this); // eslint-disable-line no-var, no-invalid-this 59 | if (_this.attr(_settings.device.selector.name)) { 60 | $.fn.deviceSelector._deviceType = '' + 61 | _this.attr(_settings.device.selector.name); 62 | } 63 | if (_this.attr(_settings.display.selector.name)) { 64 | $.fn.deviceSelector._displayType = '' 65 | + _this.attr(_settings.display.selector.name); 66 | } 67 | }); 68 | }); 69 | }; 70 | 71 | /** 72 | * Method to get current Device Type. 73 | * @function external:"jQuery.fn.deviceSelector".getDeviceType 74 | * @return {string} The current Device Type. 75 | */ 76 | 77 | $.fn.deviceSelector.getDeviceType = function() { 78 | return $.fn.deviceSelector._deviceType; 79 | }; 80 | 81 | /** 82 | * Method to get current Display Type. 83 | * @function external:"jQuery.fn.deviceSelector".getDisplayType 84 | * @return {string} The current Display Type. 85 | */ 86 | 87 | $.fn.deviceSelector.getDisplayType = function() { 88 | return $.fn.deviceSelector._displayType; 89 | }; 90 | 91 | $.fn.deviceSelector.defaults = {}; // eslint-disable-line no-var 92 | $.extend( 93 | $.fn.deviceSelector.defaults, 94 | { 95 | 'selector': { 96 | 'name': '[data-device-selector]', 97 | 'parent': { 98 | 'name': 'body', 99 | }, 100 | 'items': { 101 | 'name': '[data-device-selector-item]', 102 | }, 103 | }, 104 | 'device': { 105 | 'selector': { 106 | 'name': 'data-device-selector-devicetype', 107 | }, 108 | }, 109 | 'display': { 110 | 'selector': { 111 | 'name': 'data-device-selector-displaytype', 112 | }, 113 | }, 114 | } 115 | ); 116 | }(jQuery)); 117 | -------------------------------------------------------------------------------- /dist/jquery.device.selector.min.js: -------------------------------------------------------------------------------- 1 | /* ! 2 | * js.device.selector 1.0.1 3 | * https://github.com/exiguus/js.device.selector.git 4 | * 5 | * Simon Gattner 6 | * Released under the MIT license 7 | * 8 | * Date: 2021-06-01 14:06:15 9 | */ 10 | !function(i){"use strict";i.fn.deviceSelector=function(e){i.fn.deviceSelector._deviceType=void 0,i.fn.deviceSelector._displayType=void 0;var t=i.extend(!0,i.fn.deviceSelector.defaults,e),c=0 6 | * @license MIT 7 | * @version 1.0.1 8 | */ 9 | var i=function(){function e(t){var n=this;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this._defaults={selector:{name:"[data-device-selector]",items:{name:"[data-device-selector-item]"},parent:{name:"body"}},device:{selector:{name:"data-device-selector-devicetype"}},display:{selector:{name:"data-device-selector-displaytype"}}},this._options=t||{},this._settings=Object.assign({},this._defaults,this._options),this._items=document.querySelectorAll(this._settings.selector.parent.name+" "+this._settings.selector.name+" "+this._settings.selector.items.name),this._displayType=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n._items&&n._items.length>0?Array.prototype.slice.call(n._items).filter((function(e){return(e.offsetWidth>0||e.offsetHeight>0)&&e.hasAttribute(n._settings.display.selector.name)})):null;return e&&e.length>0?""+e[0].getAttribute(n._settings.display.selector.name):void 0},this._deviceType=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n._items&&n._items.length>0?Array.prototype.slice.call(n._items).filter((function(e){return(e.offsetWidth>0||e.offsetHeight>0)&&e.hasAttribute(n._settings.device.selector.name)})):null;return e&&e.length>0?""+e[0].getAttribute(n._settings.device.selector.name):void 0}}return r(e,[{key:"deviceType",get:function(){return this._deviceType}},{key:"displayType",get:function(){return this._displayType}}]),e}();t.default=i}]).default})); 10 | //# sourceMappingURL=js.device.selector.min.js.map -------------------------------------------------------------------------------- /dist/js.device.selector.min.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["webpack://DeviceSelector/webpack/universalModuleDefinition","webpack://DeviceSelector/webpack/bootstrap","webpack://DeviceSelector/./src/js/device.selector.class.js"],"names":["root","factory","exports","module","define","amd","window","installedModules","__webpack_require__","moduleId","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","DeviceSelector","options","this","_defaults","selector","items","parent","device","display","_options","_settings","assign","_items","document","querySelectorAll","_displayType","item","length","Array","slice","filter","offsetWidth","offsetHeight","hasAttribute","getAttribute","undefined","_deviceType"],"mappings":"CAAA,SAA2CA,EAAMC,GAC1B,iBAAZC,SAA0C,iBAAXC,OACxCA,OAAOD,QAAUD,IACQ,mBAAXG,QAAyBA,OAAOC,IAC9CD,OAAO,iBAAkB,GAAIH,GACH,iBAAZC,QACdA,QAAwB,eAAID,IAE5BD,EAAqB,eAAIC,IAR3B,CASGK,QAAQ,WACX,O,YCTE,IAAIC,EAAmB,GAGvB,SAASC,EAAoBC,GAG5B,GAAGF,EAAiBE,GACnB,OAAOF,EAAiBE,GAAUP,QAGnC,IAAIC,EAASI,EAAiBE,GAAY,CACzCC,EAAGD,EACHE,GAAG,EACHT,QAAS,IAUV,OANAU,EAAQH,GAAUI,KAAKV,EAAOD,QAASC,EAAQA,EAAOD,QAASM,GAG/DL,EAAOQ,GAAI,EAGJR,EAAOD,QA0Df,OArDAM,EAAoBM,EAAIF,EAGxBJ,EAAoBO,EAAIR,EAGxBC,EAAoBQ,EAAI,SAASd,EAASe,EAAMC,GAC3CV,EAAoBW,EAAEjB,EAASe,IAClCG,OAAOC,eAAenB,EAASe,EAAM,CAAEK,YAAY,EAAMC,IAAKL,KAKhEV,EAAoBgB,EAAI,SAAStB,GACX,oBAAXuB,QAA0BA,OAAOC,aAC1CN,OAAOC,eAAenB,EAASuB,OAAOC,YAAa,CAAEC,MAAO,WAE7DP,OAAOC,eAAenB,EAAS,aAAc,CAAEyB,OAAO,KAQvDnB,EAAoBoB,EAAI,SAASD,EAAOE,GAEvC,GADU,EAAPA,IAAUF,EAAQnB,EAAoBmB,IAC/B,EAAPE,EAAU,OAAOF,EACpB,GAAW,EAAPE,GAA8B,iBAAVF,GAAsBA,GAASA,EAAMG,WAAY,OAAOH,EAChF,IAAII,EAAKX,OAAOY,OAAO,MAGvB,GAFAxB,EAAoBgB,EAAEO,GACtBX,OAAOC,eAAeU,EAAI,UAAW,CAAET,YAAY,EAAMK,MAAOA,IACtD,EAAPE,GAA4B,iBAATF,EAAmB,IAAI,IAAIM,KAAON,EAAOnB,EAAoBQ,EAAEe,EAAIE,EAAK,SAASA,GAAO,OAAON,EAAMM,IAAQC,KAAK,KAAMD,IAC9I,OAAOF,GAIRvB,EAAoB2B,EAAI,SAAShC,GAChC,IAAIe,EAASf,GAAUA,EAAO2B,WAC7B,WAAwB,OAAO3B,EAAgB,SAC/C,WAA8B,OAAOA,GAEtC,OADAK,EAAoBQ,EAAEE,EAAQ,IAAKA,GAC5BA,GAIRV,EAAoBW,EAAI,SAASiB,EAAQC,GAAY,OAAOjB,OAAOkB,UAAUC,eAAe1B,KAAKuB,EAAQC,IAGzG7B,EAAoBgC,EAAI,GAIjBhC,EAAoBA,EAAoBiC,EAAI,G;;;;;;;;IC3EhCC,E,WAoBnB,WAAYC,GAAS,Y,4FAAA,SAEnBC,KAAKC,UAAY,CACfC,SAAU,CACR7B,KAAM,yBACN8B,MAAO,CACL9B,KAAM,+BAER+B,OAAQ,CACN/B,KAAM,SAGVgC,OAAQ,CACNH,SAAU,CACR7B,KAAM,oCAGViC,QAAS,CACPJ,SAAU,CACR7B,KAAM,sCAIZ2B,KAAKO,SAAWR,GAAW,GAC3BC,KAAKQ,UAAYhC,OAAOiC,OAAO,GAAIT,KAAKC,UAAWD,KAAKO,UACxDP,KAAKU,OAASC,SAASC,iBACrBZ,KAAKQ,UAAUN,SAASE,OAAO/B,KAAO,IACtC2B,KAAKQ,UAAUN,SAAS7B,KAAO,IAC/B2B,KAAKQ,UAAUN,SAASC,MAAM9B,MAEhC2B,KAAKa,aAAe,eAClBC,EADkB,uDACV,EAAKJ,QAAU,EAAKA,OAAOK,OAAS,EAC1CC,MAAMtB,UAAUuB,MAAMhD,KAAK,EAAKyC,QAC7BQ,QAAO,SAACJ,GAAD,OACLA,EAAKK,YAAc,GAAKL,EAAKM,aAAe,IAC7CN,EAAKO,aAAa,EAAKb,UAAUF,QAAQJ,SAAS7B,SAExD,KAPkB,OAQdyC,GAAQA,EAAKC,OAAS,EAC1B,GAAKD,EAAK,GAAGQ,aAAa,EAAKd,UAAUF,QAAQJ,SAAS7B,WAC1DkD,GACFvB,KAAKwB,YAAc,eACjBV,EADiB,uDACT,EAAKJ,QAAU,EAAKA,OAAOK,OAAS,EAC1CC,MAAMtB,UAAUuB,MAAMhD,KAAK,EAAKyC,QAC7BQ,QAAO,SAACJ,GAAD,OACLA,EAAKK,YAAc,GAAKL,EAAKM,aAAe,IAC7CN,EAAKO,aAAa,EAAKb,UAAUH,OAAOH,SAAS7B,SAEvD,KAPiB,OAQbyC,GAAQA,EAAKC,OAAS,EAC1B,GAAKD,EAAK,GAAGQ,aAAa,EAAKd,UAAUH,OAAOH,SAAS7B,WACzDkD,G,6CASF,OAAOvB,KAAKwB,c,kCASZ,OAAOxB,KAAKa,iB,KAzFKf,e","file":"js.device.selector.min.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine(\"DeviceSelector\", [], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"DeviceSelector\"] = factory();\n\telse\n\t\troot[\"DeviceSelector\"] = factory();\n})(window, function() {\nreturn "," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 0);\n","/**\n * @fileOverview device selector\n Get the current Display and Device Type of a Browser\n * @author Simon Gattner \n * @license MIT\n * @version 1.0.1\n */\nexport default class DeviceSelector {\n /* eslint-disable max-len */\n /**\n * Get the current Display and Device Type of a Browser.\n * @class DeviceSelector\n * @classdesc Class to get current Display and Device Type.\n * @param {object} options The DeviceSelector options.\n * @param {string} options.selector The DeviceSelector selector options.\n * @param {string} options.selector.name The DeviceSelector selector name for initialisation.\n * @param {string} options.selector.items The DeviceSelector selector items for initialisation.\n * @param {string} options.selector.items.name The DeviceSelector selector items name for initialisation.\n * @param {string} options.selector.parent The DeviceSelector selector parent for initialisation.\n * @param {string} options.selector.parent.name The DeviceSelector selector parent name for initialisation.\n * @param {string} options.device The DeviceSelector device type options.\n * @param {string} options.device.selector The DeviceSelector device type selector for initialisation.\n * @param {string} options.device.selector.name The DeviceSelector device type selector name for initialisation.\n * @param {string} options.display The DeviceSelector display type options.\n * @param {string} options.display.selector The DeviceSelector display type selector for initialisation.\n * @param {string} options.display.selector.name The DeviceSelector display type selector name for initialisation.\n */\n constructor(options) {\n /* eslint-enable max-len */\n this._defaults = {\n selector: {\n name: '[data-device-selector]',\n items: {\n name: '[data-device-selector-item]',\n },\n parent: {\n name: 'body',\n },\n },\n device: {\n selector: {\n name: 'data-device-selector-devicetype',\n },\n },\n display: {\n selector: {\n name: 'data-device-selector-displaytype',\n },\n },\n };\n this._options = options || {};\n this._settings = Object.assign({}, this._defaults, this._options);\n this._items = document.querySelectorAll(\n this._settings.selector.parent.name + ' ' +\n this._settings.selector.name + ' ' +\n this._settings.selector.items.name\n );\n this._displayType = (\n item = (this._items && this._items.length > 0) ?\n Array.prototype.slice.call(this._items)\n .filter((item) =>\n (item.offsetWidth > 0 || item.offsetHeight > 0) &&\n item.hasAttribute(this._settings.display.selector.name)\n ) :\n null\n ) => (item && item.length > 0) ?\n '' + item[0].getAttribute(this._settings.display.selector.name) :\n undefined;\n this._deviceType = (\n item = (this._items && this._items.length > 0) ?\n Array.prototype.slice.call(this._items)\n .filter((item) =>\n (item.offsetWidth > 0 || item.offsetHeight > 0) &&\n item.hasAttribute(this._settings.device.selector.name)\n ) :\n null\n ) => (item && item.length > 0) ?\n '' + item[0].getAttribute(this._settings.device.selector.name) :\n undefined;\n }\n /**\n * Get the current Device Type; // Device Type.\n * @function DeviceSelector.deviceType\n * @param {string} string The current Device Type.\n * @return {string | undefined} The current Device Type Name.\n */\n get deviceType() {\n return this._deviceType;\n }\n /**\n * Get the current Display Type.\n * @function DeviceSelector.displayType\n * @param {string} string The current Display Type.\n * @return {string | undefined} The current Display Type Name.\n */\n get displayType() {\n return this._displayType;\n }\n}\n"],"sourceRoot":""} -------------------------------------------------------------------------------- /docs/jsdoc/device.selector.class.js.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | JSDoc: Source: device.selector.class.js 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 |

Source: device.selector.class.js

21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 |
/**
 30 |  * @fileOverview device selector
 31 |   Get the current Display and Device Type of a Browser
 32 |  * @author Simon Gattner <npm@0x38.de>
 33 |  * @license MIT
 34 |  * @version 1.0.1
 35 |  */
 36 | export default class DeviceSelector {
 37 |   /* eslint-disable max-len */
 38 |   /**
 39 |    * Get the current Display and Device Type of a Browser.
 40 |    * @class DeviceSelector
 41 |    * @classdesc Class to get current Display and Device Type.
 42 |    * @param {object} options The DeviceSelector options.
 43 |    * @param {string} options.selector The DeviceSelector selector options.
 44 |    * @param {string} options.selector.name The DeviceSelector selector name for initialisation.
 45 |    * @param {string} options.selector.items The DeviceSelector selector items for initialisation.
 46 |    * @param {string} options.selector.items.name The DeviceSelector selector items name for initialisation.
 47 |    * @param {string} options.selector.parent The DeviceSelector selector parent for initialisation.
 48 |    * @param {string} options.selector.parent.name The DeviceSelector selector parent name for initialisation.
 49 |    * @param {string} options.device The DeviceSelector device type options.
 50 |    * @param {string} options.device.selector The DeviceSelector device type selector for initialisation.
 51 |    * @param {string} options.device.selector.name The DeviceSelector device type selector name for initialisation.
 52 |    * @param {string} options.display The DeviceSelector display type options.
 53 |    * @param {string} options.display.selector The DeviceSelector display type selector for initialisation.
 54 |    * @param {string} options.display.selector.name The DeviceSelector display type selector name for initialisation.
 55 |    */
 56 |   constructor(options) {
 57 |     /* eslint-enable max-len */
 58 |     this._defaults = {
 59 |       selector: {
 60 |         name: '[data-device-selector]',
 61 |         items: {
 62 |           name: '[data-device-selector-item]',
 63 |         },
 64 |         parent: {
 65 |           name: 'body',
 66 |         },
 67 |       },
 68 |       device: {
 69 |         selector: {
 70 |           name: 'data-device-selector-devicetype',
 71 |         },
 72 |       },
 73 |       display: {
 74 |         selector: {
 75 |           name: 'data-device-selector-displaytype',
 76 |         },
 77 |       },
 78 |     };
 79 |     this._options = options || {};
 80 |     this._settings = Object.assign({}, this._defaults, this._options);
 81 |     this._items = document.querySelectorAll(
 82 |       this._settings.selector.parent.name + ' ' +
 83 |       this._settings.selector.name + ' ' +
 84 |       this._settings.selector.items.name
 85 |     );
 86 |     this._displayType = (
 87 |       item = (this._items && this._items.length > 0) ?
 88 |         Array.prototype.slice.call(this._items)
 89 |           .filter((item) =>
 90 |             (item.offsetWidth > 0 || item.offsetHeight > 0) &&
 91 |             item.hasAttribute(this._settings.display.selector.name)
 92 |           ) :
 93 |       null
 94 |     ) => (item && item.length > 0) ?
 95 |       '' + item[0].getAttribute(this._settings.display.selector.name) :
 96 |       undefined;
 97 |     this._deviceType = (
 98 |       item = (this._items && this._items.length > 0) ?
 99 |         Array.prototype.slice.call(this._items)
100 |           .filter((item) =>
101 |             (item.offsetWidth > 0 || item.offsetHeight > 0) &&
102 |             item.hasAttribute(this._settings.device.selector.name)
103 |           ) :
104 |       null
105 |     ) => (item && item.length > 0) ?
106 |       '' + item[0].getAttribute(this._settings.device.selector.name) :
107 |       undefined;
108 |   }
109 |   /**
110 |    * Get the current Device Type; //  Device Type.
111 |    * @function DeviceSelector.deviceType
112 |    * @param {string} string The current Device Type.
113 |    * @return {string | undefined} The current Device Type Name.
114 |    */
115 |   get deviceType() {
116 |     return this._deviceType;
117 |   }
118 |   /**
119 |    * Get the current Display Type.
120 |    * @function DeviceSelector.displayType
121 |    * @param {string} string The current Display Type.
122 |    * @return {string | undefined} The current Display Type Name.
123 |    */
124 |   get displayType() {
125 |     return this._displayType;
126 |   }
127 | }
128 | 
129 |
130 |
131 | 132 | 133 | 134 | 135 |
136 | 137 | 140 | 141 |
142 | 143 |
144 | Documentation generated by JSDoc 3.6.7 on Tue Jun 01 2021 14:01:16 GMT+0200 (Central European Summer Time) 145 |
146 | 147 | 148 | 149 | 150 | 151 | -------------------------------------------------------------------------------- /docs/jsdoc/external-_jQuery.fn.deviceSelector_.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | JSDoc: External: jQuery.fn.deviceSelector 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 |

External: jQuery.fn.deviceSelector

21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |

jQuery.fn.deviceSelector

32 | 33 | 34 |
35 | 36 |
37 |
38 | 39 | 40 |
jQuery Methods to get the current Display and Device Type of a Browser
41 | 42 | 43 | 44 | 45 | 46 |
47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 |
Source:
74 |
77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 |
85 | 86 | 87 | 88 | 89 |
90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 |

Methods

107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 |

(static) getDeviceType() → {string}

115 | 116 | 117 | 118 | 119 | 120 | 121 |
122 | Method to get current Device Type. 123 |
124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 |
138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 |
Source:
165 |
168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 |
176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 |
Returns:
192 | 193 | 194 |
195 | The current Device Type. 196 |
197 | 198 | 199 | 200 |
201 |
202 | Type 203 |
204 |
205 | 206 | string 207 | 208 | 209 |
210 |
211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 |

(static) getDisplayType() → {string}

225 | 226 | 227 | 228 | 229 | 230 | 231 |
232 | Method to get current Display Type. 233 |
234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 |
248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 |
Source:
275 |
278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 |
286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 |
Returns:
302 | 303 | 304 |
305 | The current Display Type. 306 |
307 | 308 | 309 | 310 |
311 |
312 | Type 313 |
314 |
315 | 316 | string 317 | 318 | 319 |
320 |
321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 |
335 | 336 |
337 | 338 | 339 | 340 | 341 |
342 | 343 | 346 | 347 |
348 | 349 |
350 | Documentation generated by JSDoc 3.6.7 on Tue Jun 01 2021 14:01:16 GMT+0200 (Central European Summer Time) 351 |
352 | 353 | 354 | 355 | 356 | -------------------------------------------------------------------------------- /docs/jsdoc/external-_jQuery.fn_.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | JSDoc: External: jQuery.fn 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 |

External: jQuery.fn

21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 |

jQuery.fn

32 | 33 | 34 |
35 | 36 |
37 |
38 | 39 | 40 | 41 | 42 | 43 | 44 |
45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 |
Source:
72 |
75 | 76 | 77 | 78 | 79 | 80 |
See:
81 |
82 | 85 |
86 | 87 | 88 | 89 |
90 | 91 | 92 | 93 | 94 |
95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 |
116 | 117 |
118 | 119 | 120 | 121 | 122 |
123 | 124 | 127 | 128 |
129 | 130 |
131 | Documentation generated by JSDoc 3.6.7 on Tue Jun 01 2021 14:01:16 GMT+0200 (Central European Summer Time) 132 |
133 | 134 | 135 | 136 | 137 | -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /docs/jsdoc/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/jsdoc/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /docs/jsdoc/jquery.device.selector.js.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | JSDoc: Source: jquery.device.selector.js 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 |

Source: jquery.device.selector.js

21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 |
/**
 30 |  * @fileOverview device selector
 31 |   Get the current Display and Device Type of a Browser
 32 |  * @author Simon Gattner <npm@0x38.de>
 33 |  * @license MIT
 34 |  * @version 1.0.1
 35 |  */
 36 | 
 37 | /**
 38 |  * @external "jQuery.fn"
 39 |  * @see {@link http://docs.jquery.com/Plugins/Authoring The jQuery Plugin Guide}
 40 |  */
 41 | 
 42 | (function($) {
 43 |   'use strict';
 44 |   /* eslint-disable max-len */
 45 |   /**
 46 |    * jQuery Methods to get the current Display and Device Type of a Browser
 47 |    * @function external:"jQuery.fn".deviceSelector
 48 |    * @external "jQuery.fn"
 49 |    * @external "jQuery.fn.deviceSelector"
 50 |    * @param {object} options The DeviceSelector options.
 51 |    * @param {string} options.selector The DeviceSelector selector options.
 52 |    * @param {string} options.selector.name The DeviceSelector selector name for initialisation.
 53 |    * @param {string} options.selector.items The DeviceSelector selector items for initialisation.
 54 |    * @param {string} options.selector.items.name The DeviceSelector selector items name for initialisation.
 55 |    * @param {string} options.selector.parent The DeviceSelector selector parent for initialisation.
 56 |    * @param {string} options.selector.parent.name The DeviceSelector selector parent name for initialisation.
 57 |    * @param {string} options.device The DeviceSelector device type options.
 58 |    * @param {string} options.device.selector The DeviceSelector device type selector for initialisation.
 59 |    * @param {string} options.device.selector.name The DeviceSelector device type selector name for initialisation.
 60 |    * @param {string} options.display The DeviceSelector display type options.
 61 |    * @param {string} options.display.selector The DeviceSelector display type selector for initialisation.
 62 |    * @param {string} options.display.selector.name The DeviceSelector display type selector name for initialisation.
 63 |    */
 64 |   /* eslint-enable max-len */
 65 |   $.fn.deviceSelector = function(options) {
 66 |       $.fn.deviceSelector._deviceType = undefined;
 67 |       $.fn.deviceSelector._displayType = undefined;
 68 | 
 69 |       var _settings = // eslint-disable-line no-var
 70 |         $.extend(true, $.fn.deviceSelector.defaults, options);
 71 | 
 72 |       var _parent = // eslint-disable-line no-var
 73 |         (this.length > 0) ? this :
 74 |         $(_settings.selector.parent.name);
 75 | 
 76 |         // console.log(parent.find(_settings.selector.item.name))
 77 | 
 78 |       $.each(_parent, function() {
 79 |         var _this = $(this); // eslint-disable-line no-var, no-invalid-this
 80 |         var selector = // eslint-disable-line no-var
 81 |           _this.find(_settings.selector.name);
 82 |         var visibleSelectorItems = // eslint-disable-line no-var
 83 |           selector.find(_settings.selector.items.name + ':visible');
 84 | 
 85 |         $.each(visibleSelectorItems, function() {
 86 |           var _this = $(this); // eslint-disable-line no-var, no-invalid-this
 87 |           if (_this.attr(_settings.device.selector.name)) {
 88 |             $.fn.deviceSelector._deviceType = '' +
 89 |               _this.attr(_settings.device.selector.name);
 90 |           }
 91 |           if (_this.attr(_settings.display.selector.name)) {
 92 |             $.fn.deviceSelector._displayType = ''
 93 |               + _this.attr(_settings.display.selector.name);
 94 |           }
 95 |         });
 96 |       });
 97 |   };
 98 | 
 99 |   /**
100 |    * Method to get current Device Type.
101 |    * @function external:"jQuery.fn.deviceSelector".getDeviceType
102 |    * @return {string} The current Device Type.
103 |    */
104 | 
105 |   $.fn.deviceSelector.getDeviceType = function() {
106 |     return $.fn.deviceSelector._deviceType;
107 |   };
108 | 
109 |   /**
110 |    * Method to get current Display Type.
111 |    * @function external:"jQuery.fn.deviceSelector".getDisplayType
112 |    * @return {string} The current Display Type.
113 |    */
114 | 
115 |   $.fn.deviceSelector.getDisplayType = function() {
116 |     return $.fn.deviceSelector._displayType;
117 |   };
118 | 
119 |   $.fn.deviceSelector.defaults = {}; // eslint-disable-line no-var
120 |   $.extend(
121 |     $.fn.deviceSelector.defaults,
122 |     {
123 |       'selector': {
124 |         'name': '[data-device-selector]',
125 |         'parent': {
126 |           'name': 'body',
127 |         },
128 |         'items': {
129 |           'name': '[data-device-selector-item]',
130 |         },
131 |       },
132 |       'device': {
133 |         'selector': {
134 |           'name': 'data-device-selector-devicetype',
135 |         },
136 |       },
137 |       'display': {
138 |         'selector': {
139 |           'name': 'data-device-selector-displaytype',
140 |         },
141 |       },
142 |     }
143 |   );
144 | }(jQuery));
145 | 
146 |
147 |
148 | 149 | 150 | 151 | 152 |
153 | 154 | 157 | 158 |
159 | 160 |
161 | Documentation generated by JSDoc 3.6.7 on Tue Jun 01 2021 14:01:16 GMT+0200 (Central European Summer Time) 162 |
163 | 164 | 165 | 166 | 167 | 168 | -------------------------------------------------------------------------------- /docs/jsdoc/scripts/linenumber.js: -------------------------------------------------------------------------------- 1 | /*global document */ 2 | (() => { 3 | const source = document.getElementsByClassName('prettyprint source linenums'); 4 | let i = 0; 5 | let lineNumber = 0; 6 | let lineId; 7 | let lines; 8 | let totalLines; 9 | let anchorHash; 10 | 11 | if (source && source[0]) { 12 | anchorHash = document.location.hash.substring(1); 13 | lines = source[0].getElementsByTagName('li'); 14 | totalLines = lines.length; 15 | 16 | for (; i < totalLines; i++) { 17 | lineNumber++; 18 | lineId = `line${lineNumber}`; 19 | lines[i].id = lineId; 20 | if (lineId === anchorHash) { 21 | lines[i].className += ' selected'; 22 | } 23 | } 24 | } 25 | })(); 26 | -------------------------------------------------------------------------------- /docs/jsdoc/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /docs/jsdoc/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n "]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com", 2 | /^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); 3 | -------------------------------------------------------------------------------- /docs/jsdoc/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- 1 | var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; 2 | (function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a= 3 | [],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m), 9 | l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/, 10 | q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/, 11 | q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g, 12 | "");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a), 13 | a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e} 14 | for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], 18 | "catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"], 19 | H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], 20 | J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+ 21 | I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]), 22 | ["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css", 23 | /^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}), 24 | ["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", 25 | hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p=0){var k=k.match(g),f,b;if(b= 26 | !k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p th:last-child { border-right: 1px solid #ddd; } 224 | 225 | .ancestors, .attribs { color: #999; } 226 | .ancestors a, .attribs a 227 | { 228 | color: #999 !important; 229 | text-decoration: none; 230 | } 231 | 232 | .clear 233 | { 234 | clear: both; 235 | } 236 | 237 | .important 238 | { 239 | font-weight: bold; 240 | color: #950B02; 241 | } 242 | 243 | .yes-def { 244 | text-indent: -1000px; 245 | } 246 | 247 | .type-signature { 248 | color: #aaa; 249 | } 250 | 251 | .name, .signature { 252 | font-family: Consolas, Monaco, 'Andale Mono', monospace; 253 | } 254 | 255 | .details { margin-top: 14px; border-left: 2px solid #DDD; } 256 | .details dt { width: 120px; float: left; padding-left: 10px; padding-top: 6px; } 257 | .details dd { margin-left: 70px; } 258 | .details ul { margin: 0; } 259 | .details ul { list-style-type: none; } 260 | .details li { margin-left: 30px; padding-top: 6px; } 261 | .details pre.prettyprint { margin: 0 } 262 | .details .object-value { padding-top: 0; } 263 | 264 | .description { 265 | margin-bottom: 1em; 266 | margin-top: 1em; 267 | } 268 | 269 | .code-caption 270 | { 271 | font-style: italic; 272 | font-size: 107%; 273 | margin: 0; 274 | } 275 | 276 | .source 277 | { 278 | border: 1px solid #ddd; 279 | width: 80%; 280 | overflow: auto; 281 | } 282 | 283 | .prettyprint.source { 284 | width: inherit; 285 | } 286 | 287 | .source code 288 | { 289 | font-size: 100%; 290 | line-height: 18px; 291 | display: block; 292 | padding: 4px 12px; 293 | margin: 0; 294 | background-color: #fff; 295 | color: #4D4E53; 296 | } 297 | 298 | .prettyprint code span.line 299 | { 300 | display: inline-block; 301 | } 302 | 303 | .prettyprint.linenums 304 | { 305 | padding-left: 70px; 306 | -webkit-user-select: none; 307 | -moz-user-select: none; 308 | -ms-user-select: none; 309 | user-select: none; 310 | } 311 | 312 | .prettyprint.linenums ol 313 | { 314 | padding-left: 0; 315 | } 316 | 317 | .prettyprint.linenums li 318 | { 319 | border-left: 3px #ddd solid; 320 | } 321 | 322 | .prettyprint.linenums li.selected, 323 | .prettyprint.linenums li.selected * 324 | { 325 | background-color: lightyellow; 326 | } 327 | 328 | .prettyprint.linenums li * 329 | { 330 | -webkit-user-select: text; 331 | -moz-user-select: text; 332 | -ms-user-select: text; 333 | user-select: text; 334 | } 335 | 336 | .params .name, .props .name, .name code { 337 | color: #4D4E53; 338 | font-family: Consolas, Monaco, 'Andale Mono', monospace; 339 | font-size: 100%; 340 | } 341 | 342 | .params td.description > p:first-child, 343 | .props td.description > p:first-child 344 | { 345 | margin-top: 0; 346 | padding-top: 0; 347 | } 348 | 349 | .params td.description > p:last-child, 350 | .props td.description > p:last-child 351 | { 352 | margin-bottom: 0; 353 | padding-bottom: 0; 354 | } 355 | 356 | .disabled { 357 | color: #454545; 358 | } 359 | -------------------------------------------------------------------------------- /docs/jsdoc/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- 1 | /* JSDoc prettify.js theme */ 2 | 3 | /* plain text */ 4 | .pln { 5 | color: #000000; 6 | font-weight: normal; 7 | font-style: normal; 8 | } 9 | 10 | /* string content */ 11 | .str { 12 | color: #006400; 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | 17 | /* a keyword */ 18 | .kwd { 19 | color: #000000; 20 | font-weight: bold; 21 | font-style: normal; 22 | } 23 | 24 | /* a comment */ 25 | .com { 26 | font-weight: normal; 27 | font-style: italic; 28 | } 29 | 30 | /* a type name */ 31 | .typ { 32 | color: #000000; 33 | font-weight: normal; 34 | font-style: normal; 35 | } 36 | 37 | /* a literal value */ 38 | .lit { 39 | color: #006400; 40 | font-weight: normal; 41 | font-style: normal; 42 | } 43 | 44 | /* punctuation */ 45 | .pun { 46 | color: #000000; 47 | font-weight: bold; 48 | font-style: normal; 49 | } 50 | 51 | /* lisp open bracket */ 52 | .opn { 53 | color: #000000; 54 | font-weight: bold; 55 | font-style: normal; 56 | } 57 | 58 | /* lisp close bracket */ 59 | .clo { 60 | color: #000000; 61 | font-weight: bold; 62 | font-style: normal; 63 | } 64 | 65 | /* a markup tag name */ 66 | .tag { 67 | color: #006400; 68 | font-weight: normal; 69 | font-style: normal; 70 | } 71 | 72 | /* a markup attribute name */ 73 | .atn { 74 | color: #006400; 75 | font-weight: normal; 76 | font-style: normal; 77 | } 78 | 79 | /* a markup attribute value */ 80 | .atv { 81 | color: #006400; 82 | font-weight: normal; 83 | font-style: normal; 84 | } 85 | 86 | /* a declaration */ 87 | .dec { 88 | color: #000000; 89 | font-weight: bold; 90 | font-style: normal; 91 | } 92 | 93 | /* a variable name */ 94 | .var { 95 | color: #000000; 96 | font-weight: normal; 97 | font-style: normal; 98 | } 99 | 100 | /* a function name */ 101 | .fun { 102 | color: #000000; 103 | font-weight: bold; 104 | font-style: normal; 105 | } 106 | 107 | /* Specify class=linenums on a pre to get line numbering */ 108 | ol.linenums { 109 | margin-top: 0; 110 | margin-bottom: 0; 111 | } 112 | -------------------------------------------------------------------------------- /docs/jsdoc/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* Pretty printing styles. Used with prettify.js. */ 4 | /* SPAN elements with the classes below are added by prettyprint. */ 5 | /* plain text */ 6 | .pln { 7 | color: #4d4d4c; } 8 | 9 | @media screen { 10 | /* string content */ 11 | .str { 12 | color: #718c00; } 13 | 14 | /* a keyword */ 15 | .kwd { 16 | color: #8959a8; } 17 | 18 | /* a comment */ 19 | .com { 20 | color: #8e908c; } 21 | 22 | /* a type name */ 23 | .typ { 24 | color: #4271ae; } 25 | 26 | /* a literal value */ 27 | .lit { 28 | color: #f5871f; } 29 | 30 | /* punctuation */ 31 | .pun { 32 | color: #4d4d4c; } 33 | 34 | /* lisp open bracket */ 35 | .opn { 36 | color: #4d4d4c; } 37 | 38 | /* lisp close bracket */ 39 | .clo { 40 | color: #4d4d4c; } 41 | 42 | /* a markup tag name */ 43 | .tag { 44 | color: #c82829; } 45 | 46 | /* a markup attribute name */ 47 | .atn { 48 | color: #f5871f; } 49 | 50 | /* a markup attribute value */ 51 | .atv { 52 | color: #3e999f; } 53 | 54 | /* a declaration */ 55 | .dec { 56 | color: #f5871f; } 57 | 58 | /* a variable name */ 59 | .var { 60 | color: #c82829; } 61 | 62 | /* a function name */ 63 | .fun { 64 | color: #4271ae; } } 65 | /* Use higher contrast and text-weight for printable form. */ 66 | @media print, projection { 67 | .str { 68 | color: #060; } 69 | 70 | .kwd { 71 | color: #006; 72 | font-weight: bold; } 73 | 74 | .com { 75 | color: #600; 76 | font-style: italic; } 77 | 78 | .typ { 79 | color: #404; 80 | font-weight: bold; } 81 | 82 | .lit { 83 | color: #044; } 84 | 85 | .pun, .opn, .clo { 86 | color: #440; } 87 | 88 | .tag { 89 | color: #006; 90 | font-weight: bold; } 91 | 92 | .atn { 93 | color: #404; } 94 | 95 | .atv { 96 | color: #060; } } 97 | /* Style */ 98 | /* 99 | pre.prettyprint { 100 | background: white; 101 | font-family: Consolas, Monaco, 'Andale Mono', monospace; 102 | font-size: 12px; 103 | line-height: 1.5; 104 | border: 1px solid #ccc; 105 | padding: 10px; } 106 | */ 107 | 108 | /* Specify class=linenums on a pre to get line numbering */ 109 | ol.linenums { 110 | margin-top: 0; 111 | margin-bottom: 0; } 112 | 113 | /* IE indents via margin-left */ 114 | li.L0, 115 | li.L1, 116 | li.L2, 117 | li.L3, 118 | li.L4, 119 | li.L5, 120 | li.L6, 121 | li.L7, 122 | li.L8, 123 | li.L9 { 124 | /* */ } 125 | 126 | /* Alternate shading for lines */ 127 | li.L1, 128 | li.L3, 129 | li.L5, 130 | li.L7, 131 | li.L9 { 132 | /* */ } 133 | -------------------------------------------------------------------------------- /docs/static/css/style.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInBody{0%{background-color:#fff;opacity:0}100%{background-color:#6f776f;opacity:1}}@keyframes fadeInBoxShadow{0%{opacity:1}50%{opacity:0}100%{opacity:1}}*{margin:0;padding:0;box-sizing:border-box}body,html{width:100%;overflow-x:hidden}body{font:normal 100%/1.2 Arial,Helvetica Neue,Helvetica,sans-serif;color:#f0fff0;background-color:#6f776f;animation:fadeInBody 1s ease-in}body.capture .logo{display:none}header{position:relative;padding:6em 1em 2em 1em}header h1{margin-bottom:.6em}header h2{padding-bottom:.8em;border-bottom:2px solid #d5e1d5}header .logo{position:absolute;top:4em;right:1em;visibility:hidden}footer .logo svg,header .logo svg{display:inline-block;font-size:inherit;overflow:visible;vertical-align:-.125em;opacity:.7}header .logo svg.mobile{height:2em}header .logo svg.tablet{height:3em}header .logo svg.desktop{height:5em}header .logo svg.large-desktop{height:7em}footer{margin:0 1em;padding:2em 0;border-top:2px solid #d5e1d5}footer .logo .javascript{height:1em}footer{padding:1em 0;margin-bottom:1rem}footer::after{content:" ";clear:both;display:block;visibility:hidden;height:0}footer p{display:block;float:right;max-width:33.333%}footer p a{margin-right:0;letter-spacing:.2em;vertical-align:-.1em;text-decoration:none}footer ul{display:block;float:left;margin-left:-.5em;max-width:66.666%}footer ul li{display:inline-block;margin-right:.4em;list-style:none}footer ul li a{display:block;padding:.2em .4em}main{display:block;padding:0 1em 2em 1em}main ::-webkit-scrollbar-track{background-color:rgba(0,0,0,.042)}main ::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.042);outline:1px solid rgba(0,0,0,.9)}section:not(:last-child){border-bottom:1px solid #d5e1d5;margin-bottom:5em}a{color:inherit;text-decoration:none}a:visited{color:inherit;text-decoration:none},a:active,a:focus,a:hover{color:inherit;text-decoration:underline}h1,h2,h3,h4,p{margin-bottom:1em}dl,pre{margin-bottom:4em}dl::after{content:' ';display:table;width:1px;height:1px;clear:left}dd,dt{float:left;margin-bottom:.5em;line-height:2em;min-width:160px}dd+dt{clear:left}dd{max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}dd code{display:inline-block;padding:0 .4em;margin-left:1em;min-width:160px;font-size:150%;border-left:1px solid #d5e1d5}pre{position:relative;padding:0 2em 3em;font-size:110%;color:#6f776f;background-color:#d5e1d5;overflow-x:auto;opacity:.7;animation:fadeInBoxShadow 1s linear;transition:all 1s ease-out}pre::after{content:"";position:absolute;right:1em;bottom:1em;font-size:2em}pre.inline{border-bottom:2px solid #f0fff0;font-size:140%}.hljs{background:0 0!important}@media only screen and (min-width:782px){main{padding:0 4em 2em 4em}header{padding:6em 4em 2em 4em}header .logo{right:4em;visibility:visible}footer{margin:0 4em}}[data-device-selector-item]{display:none}@media only screen and (max-width:768px){[data-device-selector-devicetype=mobile]{display:block!important}}@media only screen and (min-width:769px) and (max-width:960px){[data-device-selector-devicetype=tablet]{display:block!important}}@media only screen and (min-width:961px) and (max-width:1200px){[data-device-selector-devicetype=desktop]{display:block!important}}@media only screen and (min-width:1201px){[data-device-selector-devicetype=large-desktop]{display:block!important}}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){[data-device-selector-displaytype=retina]{display:block!important}} -------------------------------------------------------------------------------- /docs/static/img/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/docs/static/img/.placeholder -------------------------------------------------------------------------------- /docs/static/js/js.device.selector/jquery.device.selector.min.js: -------------------------------------------------------------------------------- 1 | !function(i){"use strict";i.fn.deviceSelector=function(e){i.fn.deviceSelector._deviceType=void 0,i.fn.deviceSelector._displayType=void 0;var t=i.extend(!0,i.fn.deviceSelector.defaults,e),c=0 { 45 | res.render('index'); 46 | }); 47 | 48 | app.listen(app.get('port'), function() { 49 | console.log( // eslint-disable-line no-console 50 | 'Server started on port', app.get('port') 51 | ); 52 | }); 53 | -------------------------------------------------------------------------------- /example/static/css/style.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Device Selector Example 3 | * Simon Gattner 2018 4 | * 5 | **/ 6 | 7 | @keyframes fadeInBody { 8 | 0% { 9 | background-color: #FFFFFF; 10 | opacity: 0; 11 | } 12 | 100% { 13 | background-color: #6f776f; 14 | opacity: 1; 15 | } 16 | } 17 | 18 | @keyframes fadeInBoxShadow { 19 | 0% { 20 | opacity: 1; 21 | } 22 | 50% { 23 | opacity: 0; 24 | } 25 | 100% { 26 | opacity: 1; 27 | } 28 | } 29 | 30 | * { 31 | margin: 0; 32 | padding: 0; 33 | box-sizing: border-box; 34 | } 35 | 36 | html, body { 37 | width: 100%; 38 | overflow-x: hidden; 39 | } 40 | 41 | body { 42 | font: normal 100%/1.2 Arial, Helvetica Neue, Helvetica, sans-serif; 43 | color: #F0FFF0; 44 | background-color: #6f776f; 45 | animation: fadeInBody 1s ease-in; 46 | } 47 | 48 | body.capture .logo { 49 | display: none; 50 | } 51 | 52 | header { 53 | position: relative; 54 | padding: 6em 1em 2em 1em; 55 | } 56 | 57 | header h1 { 58 | margin-bottom: .6em; 59 | } 60 | 61 | header h2 { 62 | padding-bottom: .8em; 63 | border-bottom: 2px solid #d5e1d5; 64 | } 65 | 66 | header .logo { 67 | position: absolute; 68 | top: 4em; 69 | right: 1em; 70 | visibility: hidden; 71 | } 72 | 73 | header .logo svg, footer .logo svg { 74 | display: inline-block; 75 | font-size: inherit; 76 | overflow: visible; 77 | vertical-align: -.125em; 78 | opacity: .7; 79 | } 80 | 81 | header .logo svg.mobile { 82 | height: 2em; 83 | } 84 | 85 | header .logo svg.tablet { 86 | height: 3em; 87 | } 88 | 89 | header .logo svg.desktop { 90 | height: 5em; 91 | } 92 | 93 | header .logo svg.large-desktop { 94 | height: 7em; 95 | } 96 | 97 | footer { 98 | margin: 0 1em; 99 | padding: 2em 0; 100 | border-top: 2px solid #d5e1d5; 101 | } 102 | 103 | footer .logo .javascript { 104 | height: 1em; 105 | } 106 | 107 | footer { 108 | padding: 1em 0; 109 | margin-bottom: 1rem; 110 | } 111 | 112 | footer::after { 113 | content: " "; 114 | clear: both; 115 | display: block; 116 | visibility: hidden; 117 | height: 0px; 118 | } 119 | 120 | footer p { 121 | display: block; 122 | float: right; 123 | max-width: 33.333% 124 | } 125 | 126 | footer p a { 127 | margin-right: 0; 128 | letter-spacing: 0.2em; 129 | vertical-align: -.1em; 130 | text-decoration: none; 131 | } 132 | 133 | footer ul { 134 | display: block; 135 | float: left; 136 | margin-left: -.5em; 137 | max-width: 66.666%; 138 | } 139 | 140 | footer ul li { 141 | display: inline-block; 142 | margin-right: .4em; 143 | list-style: none; 144 | } 145 | 146 | footer ul li a { 147 | display: block; 148 | padding: .2em .4em; 149 | } 150 | 151 | main { 152 | display: block; 153 | padding: 0 1em 2em 1em; 154 | } 155 | 156 | main ::-webkit-scrollbar-track { 157 | background-color: rgba(0, 0, 0, .042); 158 | } 159 | 160 | main ::-webkit-scrollbar-thumb { 161 | background-color: rgba(0, 0, 0, .042); 162 | outline: 1px solid rgba(0, 0, 0, .9); 163 | } 164 | 165 | section:not(:last-child) { 166 | border-bottom: 1px solid #d5e1d5; 167 | margin-bottom: 5em; 168 | } 169 | a { 170 | color: inherit; 171 | text-decoration: none; 172 | } 173 | 174 | a:visited { 175 | color: inherit; 176 | text-decoration: none; 177 | } 178 | 179 | a:hover, a:active, a:focus, { 180 | color: inherit; 181 | text-decoration: underline; 182 | } 183 | 184 | h1, h2, h3, h4, p { 185 | margin-bottom: 1em; 186 | } 187 | 188 | pre, dl { 189 | margin-bottom: 4em; 190 | } 191 | 192 | dl::after { 193 | content: ' '; 194 | display: table; 195 | width: 1px; 196 | height: 1px; 197 | clear: left; 198 | } 199 | 200 | dt, dd { 201 | float: left; 202 | margin-bottom: .5em; 203 | line-height: 2em; 204 | min-width: 160px; 205 | } 206 | 207 | dd+dt { 208 | clear: left; 209 | } 210 | 211 | dd { 212 | max-width: 100%; 213 | white-space: nowrap; 214 | overflow: hidden; 215 | text-overflow: ellipsis; 216 | } 217 | 218 | dd code { 219 | display: inline-block; 220 | padding: 0 .4em; 221 | margin-left: 1em; 222 | min-width: 160px; 223 | font-size: 150%; 224 | border-left: 1px solid #d5e1d5; 225 | } 226 | 227 | pre { 228 | position: relative; 229 | padding: 0 2em 3em; 230 | font-size: 110%; 231 | color: #6f776f; 232 | background-color: #d5e1d5; 233 | overflow-x: auto; 234 | opacity: .7; 235 | animation: fadeInBoxShadow 1s linear; 236 | transition: all 1s ease-out; 237 | } 238 | 239 | pre::after { 240 | content: ""; 241 | position: absolute; 242 | right: 1em; 243 | bottom: 1em; 244 | font-size: 2em; 245 | } 246 | 247 | pre.inline { 248 | border-bottom: 2px solid #F0FFF0; 249 | font-size: 140%; 250 | } 251 | 252 | .hljs { 253 | background: transparent !important; 254 | } 255 | 256 | @media only screen and (min-width: 782px) { 257 | main { 258 | padding: 0 4em 2em 4em; 259 | } 260 | header { 261 | padding: 6em 4em 2em 4em; 262 | } 263 | header .logo { 264 | right: 4em; 265 | visibility: visible; 266 | } 267 | footer { 268 | margin: 0 4em; 269 | } 270 | } 271 | 272 | [data-device-selector-item] { 273 | display: none; 274 | } 275 | 276 | @media only screen and (max-width: 768px) { 277 | [data-device-selector-devicetype="mobile"] { 278 | display: block !important; 279 | } 280 | } 281 | 282 | @media only screen and (min-width: 769px) and (max-width: 960px) { 283 | [data-device-selector-devicetype="tablet"] { 284 | display: block !important; 285 | } 286 | } 287 | 288 | @media only screen and (min-width: 961px) and (max-width: 1200px) { 289 | [data-device-selector-devicetype="desktop"] { 290 | display: block !important; 291 | } 292 | } 293 | 294 | @media only screen and (min-width: 1201px) { 295 | [data-device-selector-devicetype="large-desktop"] { 296 | display: block !important; 297 | } 298 | } 299 | 300 | @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) { 301 | [data-device-selector-displaytype="retina"] { 302 | display: block !important; 303 | } 304 | } 305 | -------------------------------------------------------------------------------- /example/static/img/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/example/static/img/.placeholder -------------------------------------------------------------------------------- /example/views/index.html: -------------------------------------------------------------------------------- 1 | {% extends 'layout.html' %} 2 | 3 | {% block content %} 4 |
5 |
6 |

Select Device Type

7 |
8 |
DeviceType
9 |
not set
10 |
WindowInnerWidth
11 |
not set
12 |
13 |

Select Display Type

14 |
15 |
DisplayType
16 |
not set
17 |
18 |
19 |
20 |

NPM

21 |
22 |
installation
23 |
npm install js.device.selector --save
24 |
25 | 26 |

GIT

27 |
28 |
ZIP
29 |
https://github.com/exiguus/js.device.selector/archive/v1.0.1.zip
30 |
GZIP
31 |
https://github.com/exiguus/js.device.selector/archive/v1.0.1.tar.gz
32 | 33 |
34 | 35 |
36 | 37 |

Usage

38 | 39 |

CSS

40 |
 41 |   
 42 | {{ '' | escape }}
 82 |   
 83 | 
84 |

Markup

85 |
 86 |   
 87 | {{'
88 |
89 |
90 |
91 |
92 |
93 |
' | escape }} 94 |
95 |
96 |

JavaScript

97 |
 98 |   
 99 | {{"// app
100 | import DeviceSelector from 'js.device.selector';
101 | const deviceSelector = new DeviceSelector();
102 | 
103 | // mobile || tablet || desktop || large-desktop
104 | console.log(deviceSelector.deviceType());
105 | // retina || undefined
106 | console.log(deviceSelector.displayType());" | escape }}
107 |   
108 | 
109 |
110 |   
111 | {{'
112 | 
113 | ' | escape }}
120 |   
121 | 
122 | 123 | 124 | 125 |

Custom Usage

126 | 127 |

CSS

128 |
129 | 
130 | {{ '' | escape }}
170 | 
171 | 
172 |

Markup

173 |
174 | 
175 | {{'
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
' | escape }} 184 |
185 |
186 |

JavaScript

187 |
188 | 
189 | {{"// app
190 | import DeviceSelector from 'js.device.selector';
191 | const deviceSelector = new DeviceSelector({
192 |   'selector': {
193 |     'name': '.namespace__m-device-selector',
194 |     'parent': {
195 |       'name': 'body',
196 |     },
197 |     'items': {
198 |       'name': '.namespace__m-device-selector__item',
199 |     },
200 |   },
201 |   'device': {
202 |     'selector': {
203 |       'name': 'data-ds-devicetype',
204 |     },
205 |   },
206 |   'display': {
207 |     'selector': {
208 |       'name': 'data-ds-displaytype',
209 |     },
210 |   },
211 | });
212 | 
213 | // m || t || sm || lg
214 | console.log(deviceSelector.deviceType());
215 | // retina || undefined
216 | console.log(deviceSelector.displayType());" | escape }}
217 | 
218 | 
219 |
220 | 
221 | {{'
222 | 
223 | ' | escape }}
250 | 
251 | 
252 | 253 |
254 | {% endblock %} 255 | -------------------------------------------------------------------------------- /example/views/layout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Device Selector — ES6 Class and jQuery Plugin 7 | 8 | 9 | 10 | 11 | 12 |
13 |

Device Selector

14 |

ES6 Class and jQuery Plugin

15 |

Make your CSS Breakpoints available in JavaScript

16 | 22 |
23 | 24 |
25 | 26 | {% block content %} 27 | {% endblock %} 28 | 29 |
30 | 48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 | 56 | 57 | 69 | 74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "js.device.selector", 3 | "version": "1.0.1", 4 | "description": "ES6 class and jQuery Plugin which get the current Device Type and Display Type of a Browser while making CSS Breakpoints available in the JavaScript.", 5 | "devDependencies": { 6 | "@remy/snap": "^1.1.1", 7 | "babel-core": "^6.26.3", 8 | "babel-loader": "^7.1.5", 9 | "babel-polyfill": "^6.26.0", 10 | "babel-preset-env": "^1.7.0", 11 | "babel-preset-stage-2": "^6.24.1", 12 | "casperjs": "^1.1.4", 13 | "compression": "^1.7.4", 14 | "cross-env": "^5.2.1", 15 | "eslint": "^4.19.1", 16 | "eslint-config-google": "^0.9.1", 17 | "eslint-plugin-import": "^2.23.4", 18 | "eslint-plugin-node": "^6.0.1", 19 | "eslint-plugin-promise": "^3.8.0", 20 | "express": "^4.17.1", 21 | "express-minify": "^1.0.0", 22 | "express-nunjucks": "^2.2.5", 23 | "grunt": "^1.4.1", 24 | "grunt-banner": "^0.6.0", 25 | "grunt-cli": "^1.4.3", 26 | "grunt-contrib-clean": "^1.1.0", 27 | "grunt-contrib-copy": "^1.0.0", 28 | "grunt-contrib-uglify": "^3.4.0", 29 | "grunt-eslint": "^20.2.0", 30 | "grunt-jsdoc": "^2.4.1", 31 | "grunt-strip-code": "^1.0.0", 32 | "grunt-stripcomments": "^0.7.2", 33 | "grunt-webpack": "^3.1.3", 34 | "highlight.js": "^10.4.1", 35 | "html-entities": "^1.4.0", 36 | "html-webpack-plugin": "^3.2.0", 37 | "http-server": "^0.12.3", 38 | "istanbul-instrumenter-loader": "^3.0.1", 39 | "jasmine-core": "^3.7.1", 40 | "jit-grunt": "^0.10.0", 41 | "jquery": "^3.6.0", 42 | "jsdoc": "^3.6.7", 43 | "karma": "^2.0.5", 44 | "karma-coverage": "^1.1.2", 45 | "karma-jasmine": "^1.1.2", 46 | "karma-jquery": "^0.2.4", 47 | "karma-phantomjs-launcher": "^1.0.4", 48 | "karma-qunit": "^2.1.0", 49 | "karma-webpack": "^3.0.5", 50 | "load-grunt-configs": "^1.0.0", 51 | "node-qunit-phantomjs": "^2.1.1", 52 | "nunjucks": "^3.2.3", 53 | "phantomjs-prebuilt": "^2.1.16", 54 | "pretty": "^2.0.0", 55 | "qunit": "^2.15.0", 56 | "time-grunt": "^1.4.0", 57 | "webpack": "^4.46.0", 58 | "webpack-cli": "^3.3.12", 59 | "webpack-dev-server": "^3.11.2", 60 | "webpack-merge": "^4.2.2" 61 | }, 62 | "scripts": { 63 | "start": "npm install && npm run dev", 64 | "dev": "npm run dev-webpack && npm run dev-karma", 65 | "dev-webpack": "cross-env NODE_ENV=dev webpack-dev-server --progress --mode development --config build/webpack.config.dev.js &", 66 | "dev-webpack-stop": "kill $(ps aux | grep 'webpack' | awk '{print $2}')", 67 | "dev-karma": "cross-env NODE_ENV=dev karma start build/karma.es6.config.js", 68 | "dev-example": "node ./example/server.js", 69 | "build": "npm run lint && npm run doc-clean && npm run doc-example && grunt", 70 | "dist": "npm run build", 71 | "doc-clean": "rm -rf ./docs/static; rm -f ./docs/index.html", 72 | "doc-example": "node ./example/server.js & echo $! > .pid; sleep 1 && node_modules/@remy/snap/cli/index.js http://localhost:3333 -o docs; kill $(cat .pid); rm .pid; cp -Rf ./example/static/img ./docs/static", 73 | "test": "npm run build && npm run tests", 74 | "tests": "npm run test-coverage && npm run test-integration", 75 | "test-integration": "npm run test-qunit && npm run test-qunit-min && npm run test-casper", 76 | "test-coverage": "npm run test-qunit-coverage && npm run test-jasmine-coverage && grunt coverage", 77 | "test-qunit-coverage": "node_modules/karma/bin/karma start build/karma.jquery.config.js --single-run", 78 | "test-qunit": "node_modules/node-qunit-phantomjs/bin/node-qunit-phantomjs src/index.jquery.test.html", 79 | "test-qunit-min": "node_modules/node-qunit-phantomjs/bin/node-qunit-phantomjs src/index.jquery.min.test.html", 80 | "test-jasmine-coverage": "cross-env NODE_ENV=dev karma start build/karma.es6.config.js --single-run", 81 | "test-capture": "npm run http-server && sleep 3 && npm run test-casper-capture && npm run http-server-stop", 82 | "test-casper-capture": "node_modules/casperjs/bin/casperjs test ./tests/casper/init.js --capture", 83 | "test-casper-jquery": "node_modules/casperjs/bin/casperjs test ./tests/casper/init.js", 84 | "test-casper-es6": "node_modules/casperjs/bin/casperjs test ./tests/casper/init.js --origin=http://localhost:8080 --path=/index.html", 85 | "test-casper": "npm run http-server && sleep 3 && npm run test-casper-jquery && npm run http-server-stop", 86 | "http-server": "node_modules/http-server/bin/http-server --gzip --silent -p 7357 -a 127.0.0.1 ./ & echo $! > .pid", 87 | "http-server-stop": "kill $(cat .pid); rm .pid", 88 | "lint": "node_modules/eslint/bin/eslint.js src/js/**", 89 | "lint-fix": "node_modules/eslint/bin/eslint.js --fix src/js/**" 90 | }, 91 | "keywords": [ 92 | "device", 93 | "display", 94 | "selector", 95 | "breakpoints", 96 | "mediaquery", 97 | "mediaqueries", 98 | "media-queries", 99 | "media-query", 100 | "media", 101 | "query", 102 | "es6", 103 | "ECMAScript", 104 | "jquery" 105 | ], 106 | "main": "src/js/device.selector.class.js", 107 | "author": "Simon Gattner ", 108 | "homepage": "https://exiguus.github.io/js.device.selector/", 109 | "license": "MIT", 110 | "repository": { 111 | "type": "git", 112 | "url": "https://github.com/exiguus/js.device.selector.git" 113 | }, 114 | "dependencies": {}, 115 | "engines": { 116 | "node": ">= 10.0.0", 117 | "npm": ">= 6.0.1" 118 | }, 119 | "browserslist": [ 120 | "> 1%", 121 | "last 2 versions", 122 | "not ie <= 8" 123 | ] 124 | } 125 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Device Selector — es6 class Plugin 7 | 8 | 9 | 172 | 173 | 174 |
175 |

Device Selector

176 |

es6 class Plugin

177 |

Make your CSS Breakpoints available in JavaScript

178 | 184 |
185 | 186 |
187 |
188 |

Select Device Type

189 |
190 |
DeviceType
191 |
not set
192 |
WindowInnerWidth
193 |
not set
194 |
195 |

Select Display Type

196 |
197 |
DisplayType
198 |
not set
199 |
200 |

CSS

201 |
202 |   
203 |     <style>
204 |       [data-device-selector-item] {
205 |         display: none;
206 |       }
207 |       @media
208 |       only screen and (max-width: 768px) {
209 |         [data-device-selector-devicetype="mobile"] {
210 |           display: block !important;
211 |         }
212 |       }
213 |       @media
214 |       only screen and (min-width: 769px) and (max-width: 960px) {
215 |         [data-device-selector-devicetype="tablet"] {
216 |           display: block !important;
217 |         }
218 |       }
219 |       @media
220 |       only screen and (min-width: 961px) and (max-width: 1200px) {
221 |         [data-device-selector-devicetype="desktop"] {
222 |           display: block !important;
223 |         }
224 |       }
225 |       @media
226 |       only screen and (min-width: 1201px) {
227 |         [data-device-selector-devicetype="large-desktop"] {
228 |           display: block !important;
229 |         }
230 |       }
231 |       @media
232 |       only screen and (-webkit-min-device-pixel-ratio: 2),
233 |       only screen and (   min--moz-device-pixel-ratio: 2),
234 |       only screen and (     -o-min-device-pixel-ratio: 2/1),
235 |       only screen and (        min-device-pixel-ratio: 2),
236 |       only screen and (                min-resolution: 192dpi),
237 |       only screen and (                min-resolution: 2dppx) {
238 |         [data-device-selector-displaytype="retina"] {
239 |           display: block !important;
240 |         }
241 |       }
242 |     </style>
243 |   
244 | 
245 |

Markup

246 |
247 |   
248 |     <div data-device-selector>
249 |       <div data-device-selector-item data-device-selector-devicetype="mobile"></div>
250 |       <div data-device-selector-item data-device-selector-devicetype="tablet"></div>
251 |       <div data-device-selector-item data-device-selector-devicetype="desktop"></div>
252 |       <div data-device-selector-item data-device-selector-devicetype="large-desktop"></div>
253 |       <div data-device-selector-item data-device-selector-displaytype="retina"></div>
254 |     </div>
255 |   
256 | 
257 |

JavaScript

258 |
259 |   
260 |   import DeviceSelector from '../node_modules/js.device.selector/dist/device.selector.class';
261 |   const deviceSelector = new DeviceSelector();
262 | 
263 |   console.log(deviceSelector.settings); // eslint-disable-line no-console
264 |   console.log(deviceSelector.deviceType()); // eslint-disable-line no-console
265 |   console.log(deviceSelector.displayType()); // eslint-disable-line no-console
266 | 
267 |   document.querySelector('#deviceType').innerHTML = deviceSelector.deviceType();
268 |   document.querySelector('#displayType').innerHTML = deviceSelector.displayType();
269 |   
270 | 
271 | 272 |
273 |
274 | 285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 | 293 | 294 | -------------------------------------------------------------------------------- /src/index.jquery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Device Selector — jQuery Plugin 7 | 8 | 9 | 172 | 173 | 174 |
175 |

Device Selector

176 |

jQuery Plugin

177 |

Make your CSS Breakpoints available in JavaScript

178 | 184 |
185 | 186 |
187 |
188 |

Select Device Type

189 |
190 |
DeviceType
191 |
not set
192 |
WindowInnerWidth
193 |
not set
194 |
195 |

Select Display Type

196 |
197 |
DisplayType
198 |
not set
199 |
200 |

CSS

201 |
202 |   
203 |     <style>
204 |       [data-device-selector-item] {
205 |         display: none;
206 |       }
207 |       @media
208 |       only screen and (max-width: 768px) {
209 |         [data-device-selector-devicetype="mobile"] {
210 |           display: block !important;
211 |         }
212 |       }
213 |       @media
214 |       only screen and (min-width: 769px) and (max-width: 960px) {
215 |         [data-device-selector-devicetype="tablet"] {
216 |           display: block !important;
217 |         }
218 |       }
219 |       @media
220 |       only screen and (min-width: 961px) and (max-width: 1200px) {
221 |         [data-device-selector-devicetype="desktop"] {
222 |           display: block !important;
223 |         }
224 |       }
225 |       @media
226 |       only screen and (min-width: 1201px) {
227 |         [data-device-selector-devicetype="large-desktop"] {
228 |           display: block !important;
229 |         }
230 |       }
231 |       @media
232 |       only screen and (-webkit-min-device-pixel-ratio: 2),
233 |       only screen and (   min--moz-device-pixel-ratio: 2),
234 |       only screen and (     -o-min-device-pixel-ratio: 2/1),
235 |       only screen and (        min-device-pixel-ratio: 2),
236 |       only screen and (                min-resolution: 192dpi),
237 |       only screen and (                min-resolution: 2dppx) {
238 |         [data-device-selector-displaytype="retina"] {
239 |           display: block !important;
240 |         }
241 |       }
242 |     </style>
243 |   
244 | 
245 |

Markup

246 |
247 |   
248 |     <div data-device-selector>
249 |       <div data-device-selector-item data-device-selector-devicetype="mobile"></div>
250 |       <div data-device-selector-item data-device-selector-devicetype="tablet"></div>
251 |       <div data-device-selector-item data-device-selector-devicetype="desktop"></div>
252 |       <div data-device-selector-item data-device-selector-devicetype="large-desktop"></div>
253 |       <div data-device-selector-item data-device-selector-displaytype="retina"></div>
254 |     </div>
255 |   
256 | 
257 |

JavaScript

258 |
259 |   
260 |     <script>
261 |       $.fn.deviceSelector();
262 |       // var config = {
263 |       //   'selector': {
264 |       //     'name': '.namespace__m-device-selector',
265 |       //     'parent': {
266 |       //       'name': 'body',
267 |       //     },
268 |       //     'items': {
269 |       //       'name': '.namespace__m-device-selector__item',
270 |       //     },
271 |       //   },
272 |       //   'device': {
273 |       //     'selector': {
274 |       //       'name': 'data-ds-devicetype',
275 |       //     },
276 |       //   },
277 |       //   'display': {
278 |       //     'selector': {
279 |       //       'name': 'data-ds-displaytype',
280 |       //     },
281 |       //   },
282 |       // };
283 |       // $.fn.deviceSelector(config);
284 |       $('#deviceType').text($.fn.deviceSelector.getDeviceType());
285 |       $('#displayType').text($.fn.deviceSelector.getDisplayType());
286 |     </script>
287 |   
288 | 
289 | 290 |
291 |
292 |
293 |

294 | 297 | Device Selector 298 |

299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 | 308 | 309 | 341 | 342 | 343 | -------------------------------------------------------------------------------- /src/index.jquery.min.test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Test Device Selector jQuery Plugin 11 | 12 | 13 |
14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/index.jquery.test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Test Device Selector jQuery Plugin 11 | 12 | 13 |
14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | // app 2 | import DeviceSelector from './js/device.selector.class'; 3 | const deviceSelector = new DeviceSelector(); 4 | 5 | console.log(deviceSelector._options); // eslint-disable-line no-console 6 | console.log(deviceSelector._defaults); // eslint-disable-line no-console 7 | console.log(deviceSelector._settings); // eslint-disable-line no-console 8 | console.log(deviceSelector._items); // eslint-disable-line no-console 9 | console.log(deviceSelector.deviceType()); // eslint-disable-line no-console 10 | console.log(deviceSelector.displayType()); // eslint-disable-line no-console, max-len 11 | 12 | console.log(typeof deviceSelector); // eslint-disable-line no-console 13 | console.log(typeof deviceSelector._options); // eslint-disable-line no-console 14 | console.log(typeof deviceSelector._defaults); // eslint-disable-line no-console 15 | console.log(typeof deviceSelector._settings); // eslint-disable-line no-console 16 | console.log(typeof deviceSelector._items); // eslint-disable-line no-console 17 | console.log(typeof deviceSelector.deviceType); // eslint-disable-line no-console, max-len 18 | console.log(typeof deviceSelector.displayType); // eslint-disable-line no-console, max-len 19 | 20 | document.querySelector('#deviceType').innerHTML = deviceSelector.deviceType(); 21 | document.querySelector('#displayType').innerHTML = deviceSelector.displayType(); 22 | document.querySelector('#windowInnerWidth').innerHTML = window.innerWidth; 23 | console.log(typeof deviceSelector.deviceType() === 'undefined'); 24 | if (deviceSelector.deviceType()) document.querySelector('.logo svg.' + deviceSelector.deviceType()) 25 | .style.opacity = 1; 26 | -------------------------------------------------------------------------------- /src/index.test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Device Selector — es6 class Plugin 7 | 8 | 9 | 172 | 173 | 174 |
175 |

Device Selector

176 |

es6 class Plugin

177 |

Make your CSS Breakpoints available in JavaScript

178 | 184 |
185 | 186 |
187 |
188 |

Select Device Type

189 |
190 |
DeviceType
191 |
not set
192 |
WindowInnerWidth
193 |
not set
194 |
195 |

Select Display Type

196 |
197 |
DisplayType
198 |
not set
199 |
200 |

CSS

201 |
202 |   
203 |     <style>
204 |       [data-device-selector-item] {
205 |         display: none;
206 |       }
207 |       @media
208 |       only screen and (max-width: 768px) {
209 |         [data-device-selector-devicetype="mobile"] {
210 |           display: block !important;
211 |         }
212 |       }
213 |       @media
214 |       only screen and (min-width: 769px) and (max-width: 960px) {
215 |         [data-device-selector-devicetype="tablet"] {
216 |           display: block !important;
217 |         }
218 |       }
219 |       @media
220 |       only screen and (min-width: 961px) and (max-width: 1200px) {
221 |         [data-device-selector-devicetype="desktop"] {
222 |           display: block !important;
223 |         }
224 |       }
225 |       @media
226 |       only screen and (min-width: 1201px) {
227 |         [data-device-selector-devicetype="large-desktop"] {
228 |           display: block !important;
229 |         }
230 |       }
231 |       @media
232 |       only screen and (-webkit-min-device-pixel-ratio: 2),
233 |       only screen and (   min--moz-device-pixel-ratio: 2),
234 |       only screen and (     -o-min-device-pixel-ratio: 2/1),
235 |       only screen and (        min-device-pixel-ratio: 2),
236 |       only screen and (                min-resolution: 192dpi),
237 |       only screen and (                min-resolution: 2dppx) {
238 |         [data-device-selector-displaytype="retina"] {
239 |           display: block !important;
240 |         }
241 |       }
242 |     </style>
243 |   
244 | 
245 |

Markup

246 |
247 |   
248 |     <div data-device-selector>
249 |       <div data-device-selector-item data-device-selector-devicetype="mobile"></div>
250 |       <div data-device-selector-item data-device-selector-devicetype="tablet"></div>
251 |       <div data-device-selector-item data-device-selector-devicetype="desktop"></div>
252 |       <div data-device-selector-item data-device-selector-devicetype="large-desktop"></div>
253 |       <div data-device-selector-item data-device-selector-displaytype="retina"></div>
254 |     </div>
255 |   
256 | 
257 |

JavaScript

258 |
259 |   
260 |   import DeviceSelector from '../node_modules/js.device.selector/dist/device.selector.class';
261 |   const deviceSelector = new DeviceSelector();
262 | 
263 |   console.log(deviceSelector.settings); // eslint-disable-line no-console
264 |   console.log(deviceSelector.deviceType()); // eslint-disable-line no-console
265 |   console.log(deviceSelector.displayType()); // eslint-disable-line no-console
266 | 
267 |   document.querySelector('#deviceType').innerHTML = deviceSelector.deviceType();
268 |   document.querySelector('#displayType').innerHTML = deviceSelector.displayType();
269 |   
270 | 
271 | 272 |
273 |
274 | 285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 | 293 | 297 | 298 | 299 | -------------------------------------------------------------------------------- /src/js/device.selector.class.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileOverview device selector 3 | Get the current Display and Device Type of a Browser 4 | * @author Simon Gattner 5 | * @license MIT 6 | * @version 1.0.1 7 | */ 8 | export default class DeviceSelector { 9 | /* eslint-disable max-len */ 10 | /** 11 | * Get the current Display and Device Type of a Browser. 12 | * @class DeviceSelector 13 | * @classdesc Class to get current Display and Device Type. 14 | * @param {object} options The DeviceSelector options. 15 | * @param {string} options.selector The DeviceSelector selector options. 16 | * @param {string} options.selector.name The DeviceSelector selector name for initialisation. 17 | * @param {string} options.selector.items The DeviceSelector selector items for initialisation. 18 | * @param {string} options.selector.items.name The DeviceSelector selector items name for initialisation. 19 | * @param {string} options.selector.parent The DeviceSelector selector parent for initialisation. 20 | * @param {string} options.selector.parent.name The DeviceSelector selector parent name for initialisation. 21 | * @param {string} options.device The DeviceSelector device type options. 22 | * @param {string} options.device.selector The DeviceSelector device type selector for initialisation. 23 | * @param {string} options.device.selector.name The DeviceSelector device type selector name for initialisation. 24 | * @param {string} options.display The DeviceSelector display type options. 25 | * @param {string} options.display.selector The DeviceSelector display type selector for initialisation. 26 | * @param {string} options.display.selector.name The DeviceSelector display type selector name for initialisation. 27 | */ 28 | constructor(options) { 29 | /* eslint-enable max-len */ 30 | this._defaults = { 31 | selector: { 32 | name: '[data-device-selector]', 33 | items: { 34 | name: '[data-device-selector-item]', 35 | }, 36 | parent: { 37 | name: 'body', 38 | }, 39 | }, 40 | device: { 41 | selector: { 42 | name: 'data-device-selector-devicetype', 43 | }, 44 | }, 45 | display: { 46 | selector: { 47 | name: 'data-device-selector-displaytype', 48 | }, 49 | }, 50 | }; 51 | this._options = options || {}; 52 | this._settings = Object.assign({}, this._defaults, this._options); 53 | this._items = document.querySelectorAll( 54 | this._settings.selector.parent.name + ' ' + 55 | this._settings.selector.name + ' ' + 56 | this._settings.selector.items.name 57 | ); 58 | this._displayType = ( 59 | item = (this._items && this._items.length > 0) ? 60 | Array.prototype.slice.call(this._items) 61 | .filter((item) => 62 | (item.offsetWidth > 0 || item.offsetHeight > 0) && 63 | item.hasAttribute(this._settings.display.selector.name) 64 | ) : 65 | null 66 | ) => (item && item.length > 0) ? 67 | '' + item[0].getAttribute(this._settings.display.selector.name) : 68 | undefined; 69 | this._deviceType = ( 70 | item = (this._items && this._items.length > 0) ? 71 | Array.prototype.slice.call(this._items) 72 | .filter((item) => 73 | (item.offsetWidth > 0 || item.offsetHeight > 0) && 74 | item.hasAttribute(this._settings.device.selector.name) 75 | ) : 76 | null 77 | ) => (item && item.length > 0) ? 78 | '' + item[0].getAttribute(this._settings.device.selector.name) : 79 | undefined; 80 | } 81 | /** 82 | * Get the current Device Type; // Device Type. 83 | * @function DeviceSelector.deviceType 84 | * @param {string} string The current Device Type. 85 | * @return {string | undefined} The current Device Type Name. 86 | */ 87 | get deviceType() { 88 | return this._deviceType; 89 | } 90 | /** 91 | * Get the current Display Type. 92 | * @function DeviceSelector.displayType 93 | * @param {string} string The current Display Type. 94 | * @return {string | undefined} The current Display Type Name. 95 | */ 96 | get displayType() { 97 | return this._displayType; 98 | } 99 | } 100 | -------------------------------------------------------------------------------- /src/js/jquery.device.selector.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileOverview device selector 3 | Get the current Display and Device Type of a Browser 4 | * @author Simon Gattner 5 | * @license MIT 6 | * @version 1.0.1 7 | */ 8 | 9 | /** 10 | * @external "jQuery.fn" 11 | * @see {@link http://docs.jquery.com/Plugins/Authoring The jQuery Plugin Guide} 12 | */ 13 | 14 | (function($) { 15 | 'use strict'; 16 | /* eslint-disable max-len */ 17 | /** 18 | * jQuery Methods to get the current Display and Device Type of a Browser 19 | * @function external:"jQuery.fn".deviceSelector 20 | * @external "jQuery.fn" 21 | * @external "jQuery.fn.deviceSelector" 22 | * @param {object} options The DeviceSelector options. 23 | * @param {string} options.selector The DeviceSelector selector options. 24 | * @param {string} options.selector.name The DeviceSelector selector name for initialisation. 25 | * @param {string} options.selector.items The DeviceSelector selector items for initialisation. 26 | * @param {string} options.selector.items.name The DeviceSelector selector items name for initialisation. 27 | * @param {string} options.selector.parent The DeviceSelector selector parent for initialisation. 28 | * @param {string} options.selector.parent.name The DeviceSelector selector parent name for initialisation. 29 | * @param {string} options.device The DeviceSelector device type options. 30 | * @param {string} options.device.selector The DeviceSelector device type selector for initialisation. 31 | * @param {string} options.device.selector.name The DeviceSelector device type selector name for initialisation. 32 | * @param {string} options.display The DeviceSelector display type options. 33 | * @param {string} options.display.selector The DeviceSelector display type selector for initialisation. 34 | * @param {string} options.display.selector.name The DeviceSelector display type selector name for initialisation. 35 | */ 36 | /* eslint-enable max-len */ 37 | $.fn.deviceSelector = function(options) { 38 | $.fn.deviceSelector._deviceType = undefined; 39 | $.fn.deviceSelector._displayType = undefined; 40 | 41 | var _settings = // eslint-disable-line no-var 42 | $.extend(true, $.fn.deviceSelector.defaults, options); 43 | 44 | var _parent = // eslint-disable-line no-var 45 | (this.length > 0) ? this : 46 | $(_settings.selector.parent.name); 47 | 48 | // console.log(parent.find(_settings.selector.item.name)) 49 | 50 | $.each(_parent, function() { 51 | var _this = $(this); // eslint-disable-line no-var, no-invalid-this 52 | var selector = // eslint-disable-line no-var 53 | _this.find(_settings.selector.name); 54 | var visibleSelectorItems = // eslint-disable-line no-var 55 | selector.find(_settings.selector.items.name + ':visible'); 56 | 57 | $.each(visibleSelectorItems, function() { 58 | var _this = $(this); // eslint-disable-line no-var, no-invalid-this 59 | if (_this.attr(_settings.device.selector.name)) { 60 | $.fn.deviceSelector._deviceType = '' + 61 | _this.attr(_settings.device.selector.name); 62 | } 63 | if (_this.attr(_settings.display.selector.name)) { 64 | $.fn.deviceSelector._displayType = '' 65 | + _this.attr(_settings.display.selector.name); 66 | } 67 | }); 68 | }); 69 | }; 70 | 71 | /** 72 | * Method to get current Device Type. 73 | * @function external:"jQuery.fn.deviceSelector".getDeviceType 74 | * @return {string} The current Device Type. 75 | */ 76 | 77 | $.fn.deviceSelector.getDeviceType = function() { 78 | return $.fn.deviceSelector._deviceType; 79 | }; 80 | 81 | /** 82 | * Method to get current Display Type. 83 | * @function external:"jQuery.fn.deviceSelector".getDisplayType 84 | * @return {string} The current Display Type. 85 | */ 86 | 87 | $.fn.deviceSelector.getDisplayType = function() { 88 | return $.fn.deviceSelector._displayType; 89 | }; 90 | 91 | $.fn.deviceSelector.defaults = {}; // eslint-disable-line no-var 92 | $.extend( 93 | $.fn.deviceSelector.defaults, 94 | { 95 | 'selector': { 96 | 'name': '[data-device-selector]', 97 | 'parent': { 98 | 'name': 'body', 99 | }, 100 | 'items': { 101 | 'name': '[data-device-selector-item]', 102 | }, 103 | }, 104 | 'device': { 105 | 'selector': { 106 | 'name': 'data-device-selector-devicetype', 107 | }, 108 | }, 109 | 'display': { 110 | 'selector': { 111 | 'name': 'data-device-selector-displaytype', 112 | }, 113 | }, 114 | } 115 | ); 116 | }(jQuery)); 117 | -------------------------------------------------------------------------------- /src/js/jquery.device.selector.test.js: -------------------------------------------------------------------------------- 1 | var CONSOLE_LOG = false; // eslint-disable-line no-var 2 | QUnit.module('Test Device Selector jQuery Plugin', function(hooks) { 3 | hooks.before(function(assert) { 4 | $('#qunit-fixture').html(''); 5 | assert.ok(true, 'before called'); 6 | }); 7 | QUnit.test('call hooks', function(assert) { 8 | assert.expect(1); 9 | }); 10 | QUnit.moduleStart(function(details) { 11 | if (CONSOLE_LOG) { 12 | console.info( // eslint-disable-line no-console 13 | 'Now running: ', 14 | details.name 15 | ); 16 | } 17 | }); 18 | QUnit.test('$.fn.deviceSelector', function(assert) { 19 | $.fn.deviceSelector(); 20 | assert.equal( 21 | typeof $.fn.deviceSelector === 'function', 22 | true, 23 | '$.fn.deviceSelector is function' 24 | ); 25 | assert.equal( 26 | typeof $.fn.deviceSelector.getDeviceType === 'function', 27 | true, 28 | '$.fn.deviceSelector.getDeviceType is function' 29 | ); 30 | assert.equal( 31 | typeof $.fn.deviceSelector.getDisplayType === 'function', 32 | true, 33 | '$.fn.deviceSelector.getDisplayType is function' 34 | ); 35 | assert.equal( 36 | $.fn.deviceSelector.getDeviceType() === undefined, 37 | true, 38 | 'getDeviceType() is undefined' 39 | ); 40 | assert.equal( 41 | $.fn.deviceSelector.getDisplayType() === undefined, 42 | true, 43 | 'getDisplayType() is undefined' 44 | ); 45 | assert.equal( 46 | typeof $.fn.deviceSelector.defaults === 'object', 47 | true, 48 | 'defaults is object' 49 | ); 50 | assert.deepEqual( 51 | $.fn.deviceSelector.defaults, 52 | { 53 | 'selector': { 54 | 'name': '[data-device-selector]', 55 | 'parent': { 56 | 'name': 'body', 57 | }, 58 | 'items': { 59 | 'name': '[data-device-selector-item]', 60 | }, 61 | }, 62 | 'device': { 63 | 'selector': { 64 | 'name': 'data-device-selector-devicetype', 65 | }, 66 | }, 67 | 'display': { 68 | 'selector': { 69 | 'name': 'data-device-selector-displaytype', 70 | }, 71 | }, 72 | }, 73 | 'defaults is eq object' 74 | ); 75 | }); 76 | 77 | QUnit.test('$.fn.deviceSelector fail', function(assert) { 78 | var element = // eslint-disable-line no-var 79 | '
' + 80 | '
' + 81 | '
'; 82 | $('#qunit-fixture').html(element); 83 | $.fn.deviceSelector(); 84 | assert.equal( 85 | $.fn.deviceSelector.getDeviceType() === undefined, 86 | true, 87 | 'getDeviceType() is String' 88 | ); 89 | assert.equal( 90 | $.fn.deviceSelector.getDisplayType() === undefined, 91 | true, 92 | 'getDisplayType() is String' 93 | ); 94 | }); 95 | 96 | QUnit.test('$.fn.deviceSelector defaults', function(assert) { 97 | var element = // eslint-disable-line no-var 98 | '
' + 99 | '
' + 101 | '
' + 103 | '
' + 105 | '
' + 107 | '
' + 109 | '
'; 110 | $('#qunit-fixture').html(element); 111 | $.fn.deviceSelector(); 112 | assert.equal( 113 | typeof $.fn.deviceSelector.getDeviceType() === 'string' || 114 | typeof $.fn.deviceSelector.getDeviceType() === 'undefined', 115 | true, 116 | 'getDeviceType() is String' 117 | ); 118 | assert.equal( 119 | typeof $.fn.deviceSelector.getDisplayType() === 'string' || 120 | typeof $.fn.deviceSelector.getDisplayType() === 'undefined', 121 | true, 122 | 'getDisplayType() is String' 123 | ); 124 | }); 125 | 126 | QUnit.test('$.fn.deviceSelector parent', function(assert) { 127 | var element = // eslint-disable-line no-var 128 | '
' + 129 | '
' + 130 | '
' + 132 | '
' + 134 | '
' + 136 | '
' + 138 | '
' + 140 | '
' + 141 | '
'; 142 | $('#qunit-fixture').html(element); 143 | var customParent = $('#customParent'); // eslint-disable-line no-var 144 | customParent.deviceSelector(); 145 | assert.equal( 146 | typeof customParent.deviceSelector.getDeviceType() === 'string' || 147 | typeof customParent.deviceSelector.getDeviceType() === 'undefined', 148 | true, 149 | 'getDeviceType() is String' 150 | ); 151 | assert.equal( 152 | typeof customParent.deviceSelector.getDisplayType() === 'string' || 153 | typeof customParent.deviceSelector.getDisplayType() === 'undefined', 154 | true, 155 | 'getDisplayType() is String' 156 | ); 157 | }); 158 | 159 | QUnit.test('$.fn.deviceSelector custom', function(assert) { 160 | var element = // eslint-disable-line no-var 161 | '
' + 162 | '
' + 163 | '
' + 165 | '
' + 167 | '
' + 169 | '
' + 171 | '
' + 173 | '
' + 174 | '
'; 175 | $('#qunit-fixture').html(element); 176 | $.fn.deviceSelector({ 177 | 'selector': { 178 | 'name': '.namespace__m-device-selector', 179 | 'parent': { 180 | 'name': '.namespace', 181 | }, 182 | 'items': { 183 | 'name': '.namespace__m-device-selector__item', 184 | }, 185 | }, 186 | 'device': { 187 | 'selector': { 188 | 'name': 'data-ds-devicetype', 189 | }, 190 | }, 191 | 'display': { 192 | 'selector': { 193 | 'name': 'data-ds-displaytype', 194 | }, 195 | }, 196 | }); 197 | assert.equal( 198 | typeof $.fn.deviceSelector.getDeviceType() === 'string' || 199 | typeof $.fn.deviceSelector.getDeviceType() === 'undefined', 200 | true, 201 | 'getDeviceType() is String' 202 | ); 203 | assert.equal( 204 | typeof $.fn.deviceSelector.getDisplayType() === 'string' || 205 | typeof $.fn.deviceSelector.getDisplayType() === 'undefined', 206 | true, 207 | 'getDisplayType() is String' 208 | ); 209 | }); 210 | 211 | QUnit.moduleDone(function(details) { 212 | $('#qunit-fixture').html(''); 213 | if (CONSOLE_LOG) { 214 | console.info( // eslint-disable-line no-console 215 | 'Finished running: ', 216 | details.name, 217 | 'Failed/total: ', 218 | details.failed, 219 | details.total 220 | ); 221 | } 222 | }); 223 | }); 224 | -------------------------------------------------------------------------------- /tests/casper/casper.helper.js: -------------------------------------------------------------------------------- 1 | /* globals 2 | casper 3 | config 4 | */ 5 | /* eslint-disable require-jsdoc, no-unused-vars, no-var */ 6 | function printTestInfo(string) { 7 | casper.echo('INFO: ' + string, 'INFO'); 8 | } 9 | 10 | function printTestInfos(string) { 11 | casper.echo(string); 12 | } 13 | 14 | function getTestCaptureName(id, timestamp) { 15 | var unixtime = timestamp === undefined ? '' : new Date().getTime(); 16 | return config.capture.path + 17 | id + 18 | unixtime + 19 | config.capture.fileEnding; 20 | } 21 | 22 | function getObjectCount(obj) { 23 | var count = 0; 24 | for (var k in obj) { 25 | if (obj.hasOwnProperty(k)) { 26 | ++count; 27 | } 28 | } 29 | return count; 30 | } 31 | 32 | function getRandomSlicedArray(array, maxLength) { 33 | maxLength = maxLength || 12; 34 | var length = array.length; 35 | var index = Math.floor(Math.random() * length); 36 | var indexStart = index; 37 | var indexEnd = (index + maxLength - 1 >= length) ? 38 | length : index + maxLength; 39 | return array.slice(indexStart, indexEnd); 40 | } 41 | 42 | function getWithCorrectType(from, to) { 43 | var type = typeof from; 44 | switch (type) { 45 | case 'boolean': 46 | to = (to === 'true') ? true : false; 47 | break; 48 | case 'number': 49 | to = parseInt(to); 50 | break; 51 | case 'object': 52 | to = sortObject(JSON.parse(to)); 53 | break; 54 | default: 55 | to = '' + to; 56 | } 57 | return to; 58 | } 59 | 60 | function sortObject(obj) { 61 | return Object.keys(obj).sort().reduce(function(result, key) { 62 | result[key] = obj[key]; 63 | return result; 64 | }, {}); 65 | } 66 | -------------------------------------------------------------------------------- /tests/casper/init.js: -------------------------------------------------------------------------------- 1 | /* globals 2 | casper 3 | phantom 4 | printTestInfo 5 | getTestCaptureName 6 | */ 7 | 8 | /* eslint-disable no-var, no-invalid-this */ 9 | var config = { 10 | 'count': 22, 11 | 'url': { 12 | 'origin': 'http://localhost:7357', 13 | 'path': '/src/index.jquery.html', 14 | }, 15 | 'path': 'tests/casper/', 16 | 'title': 'Test Device Selector', 17 | 'viewport': { 18 | 'width': 360, 19 | 'height': 480, 20 | }, 21 | 'breakpoints': { 22 | 'largedesktop': { 23 | 'width': 1600, 24 | }, 25 | 'desktop': { 26 | 'width': 1200, 27 | }, 28 | 'tablet': { 29 | 'width': 960, 30 | }, 31 | 'mobile': { 32 | 'width': 768, 33 | }, 34 | }, 35 | 'capture': { 36 | 'enable': false, 37 | 'wait': 50, 38 | 'path': 'tests/screenshots/', 39 | 'fileEnding': '.png', 40 | }, 41 | 'debug': false, 42 | }; 43 | // inject helper 44 | phantom.injectJs(config.path + 'casper.helper.js'); 45 | // cli 46 | if (casper.cli.options.path !== undefined) { 47 | config.url.path = casper.cli.options.path; 48 | } 49 | 50 | if (casper.cli.options.origin !== undefined) { 51 | config.url.origin = casper.cli.options.origin; 52 | } 53 | 54 | if (casper.cli.options.capture !== undefined) { 55 | config.capture.enable = true; 56 | } 57 | // tests 58 | printTestInfo( 59 | 'Run ' + config.title + ' tests:' 60 | ); 61 | 62 | Object.keys(config.breakpoints).forEach(function(key) { 63 | // begin test 64 | casper.test.begin( 65 | config.title, 66 | 2, 67 | function suite(test) { 68 | printTestInfo( 69 | 'Url: ' + config.url.origin + config.url.path 70 | ); 71 | printTestInfo( 72 | 'Breakpoint: ' + key 73 | ); 74 | // start test 75 | casper.start(config.url.origin, function() { 76 | this.viewport( 77 | config.breakpoints[key].width || config.viewport.width, 78 | config.breakpoints[key].height || config.viewport.height 79 | ); 80 | }); 81 | // open path 82 | casper.thenOpen(config.url.origin + config.url.path, function() { 83 | if (config.debug === true) console.info(this.getCurrentUrl()); // eslint-disable-line no-console, max-len 84 | // casper.evaluate(function() { 85 | // // make screen retina 86 | // document.body.style.webkitTransform = 'scale(2)'; 87 | // document.body.style.webkitTransformOrigin = '0% 0%'; 88 | // document.body.style.width = '50%'; 89 | // }); 90 | if (config.capture.enable === true) { 91 | casper.evaluate(function() { 92 | // phantomjs do not really support svg, 93 | // so we hide it with body.capture svg ... 94 | document.body.classList.add('capture'); 95 | }); 96 | } 97 | }); 98 | // check elements 99 | 100 | casper.then(function() { 101 | var element = '#deviceType'; 102 | var content = 103 | this.getHTML(element).replace(/-/g, ''); 104 | if (config.debug === true) { 105 | console.info( // eslint-disable-line no-console 106 | key, 107 | element, 108 | config.breakpoints[key].width || config.viewport.width, 109 | config.breakpoints[key].height || config.viewport.height 110 | ); 111 | } 112 | printTestInfo( 113 | 'Content: ' + content 114 | ); 115 | // check element exist 116 | test.assertExists(element, element + ' element exist'); 117 | // check element equal 118 | test.assertEquals( 119 | (content === key), 120 | true, 121 | element + ' content is equal ' + key 122 | ); 123 | }); 124 | 125 | // capture test 126 | if (config.capture.enable === true) { 127 | casper.then(function() { 128 | this.wait( 129 | config.capture.wait, 130 | function() { 131 | this.capture( 132 | getTestCaptureName(key), 133 | { 134 | top: 0, 135 | left: 0, 136 | width: config.breakpoints[key].width || 137 | config.viewport.width, 138 | height: config.breakpoints[key].height || 139 | config.viewport.height, 140 | } 141 | ); 142 | } 143 | ); 144 | }); 145 | } 146 | // end test 147 | casper.run(function() { 148 | test.done(); 149 | }); 150 | } 151 | ); 152 | }); 153 | -------------------------------------------------------------------------------- /tests/screenshots/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/tests/screenshots/desktop.png -------------------------------------------------------------------------------- /tests/screenshots/largedesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/tests/screenshots/largedesktop.png -------------------------------------------------------------------------------- /tests/screenshots/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/tests/screenshots/mobile.png -------------------------------------------------------------------------------- /tests/screenshots/tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exiguus/js.device.selector/557234a6d80f3a407cb1510d1fec25bf941b6aa0/tests/screenshots/tablet.png --------------------------------------------------------------------------------