Code Monkey home page Code Monkey logo

ember-slide-push-menu's Introduction

Hi there ๐Ÿ‘‹ I am Rajasegar

I am a Frontend Architect passionate about Open source and building some cool stuff for the web.

Rajasegar's github stats

ember-slide-push-menu's People

Contributors

dependabot[bot] avatar ember-tomster avatar rajasegar avatar renovate-bot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

ember-slide-push-menu's Issues

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Rate-Limited

These updates are currently rate-limited. Click on a checkbox below to force their creation now.

  • chore(deps): replace dependency eslint-plugin-node with eslint-plugin-n 14.0.0
  • chore(deps): replace dependency npm-run-all with npm-run-all2 5.0.0
  • chore(deps): update dependency @semantic-release/changelog to v6.0.3
  • chore(deps): update dependency ember-auto-import to v1.12.2
  • chore(deps): update dependency ember-cli to v3.28.6
  • chore(deps): update dependency ember-source to v3.28.12
  • fix(deps): update dependency ember-cli-babel to v7.26.11
  • fix(deps): update dependency ember-cli-htmlbars to v5.7.2
  • chore(deps): update dependency @ember/optional-features to v2.1.0
  • chore(deps): update dependency @ember/render-modifiers to v2.1.0
  • chore(deps): update dependency ember-cli-dependency-checker to v3.3.2
  • chore(deps): update dependency ember-resolver to v8.1.0
  • chore(deps): update dependency ember-template-lint to v3.16.0
  • chore(deps): update glimmer.js packages to v1.1.2 (@glimmer/component, @glimmer/tracking)
  • chore(deps): update actions/checkout action to v4
  • chore(deps): update dependency ember-cli to v5
  • chore(deps): update dependency ember-cli-code-coverage to v2
  • chore(deps): update dependency ember-qunit to v8
  • chore(deps): update dependency ember-resolver to v11
  • chore(deps): update dependency ember-source to v5
  • chore(deps): update dependency ember-template-lint to v5
  • chore(deps): update dependency ember-try to v3
  • chore(deps): update rwjblue/setup-volta action to v4
  • fix(deps): update dependency ember-cli-babel to v8
  • ๐Ÿ” Create all rate-limited PRs at once ๐Ÿ”

Other Branches

These updates are pending. To force PRs open, click the checkbox below.

  • chore(deps): update dependency webpack to v5.76.0 [security]

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

github-actions
.github/workflows/ci.yml
  • actions/checkout v2
  • rwjblue/setup-volta v1
.github/workflows/pull_requests.yml
  • actions/checkout v2
  • rwjblue/setup-volta v1
npm
package.json
  • ember-cli-babel 7.26.6
  • ember-cli-htmlbars 5.7.1
  • @ember/optional-features 2.0.0
  • @ember/render-modifiers 2.0.0
  • @glimmer/component 1.0.4
  • @glimmer/tracking 1.0.4
  • @semantic-release/changelog 6.0.1
  • @semantic-release/git 10.0.1
  • babel-eslint 10.1.0
  • broccoli-asset-rev 3.0.0
  • coveralls 3.1.1
  • ember-addon-starterkit 0.3.0
  • ember-auto-import 1.12.0
  • ember-cli 3.28.3
  • ember-cli-code-coverage 1.0.3
  • ember-cli-dependency-checker 3.2.0
  • ember-cli-inject-live-reload 2.1.0
  • ember-cli-qunit 4.4.0
  • ember-cli-sri 2.1.1
  • ember-cli-uglify 3.0.0
  • ember-disable-prototype-extensions 1.1.3
  • ember-export-application-global 2.0.1
  • ember-load-initializers 2.1.2
  • ember-qunit 4.6.0
  • ember-resolver 8.0.3
  • ember-source 3.28.6
  • ember-template-lint 3.12.0
  • ember-try 1.4.0
  • eslint 7.32.0
  • eslint-plugin-node 11.1.0
  • loader.js 4.7.0
  • npm-run-all 4.1.5
  • semantic-release 18.0.0
  • webpack ^5.70.0
  • node 10.* || >= 12

  • Check this box to trigger a request for Renovate to run again on this repository

Setting custom widths

What is the correct way to specify the width of cbp-spmenu-vertical cbp-spmenu-right?

Thank you!

deprecation warning: Using Ember.$() has been deprecated, use `import jQuery from 'jquery';`

Seeing this in version 1.0.0 (1.0.1 doesn't seem to be a legit version?). I'm using Ember 3.11.

deprecate.js:120 DEPRECATION: Using Ember.$() has been deprecated, use import jQuery from 'jquery'; instead [deprecation id: ember-views.curly-components.jquery-element] See https://emberjs.com/deprecations/v3.x#toc_jquery-apis for more details. at logDeprecationStackTrace (http://localhost:4200/assets/vendor.js:54731:23) at HANDLERS.<computed> (http://localhost:4200/assets/vendor.js:54825:11) at raiseOnDeprecation (http://localhost:4200/assets/vendor.js:54758:11) at HANDLERS.<computed> (http://localhost:4200/assets/vendor.js:54825:11) at http://localhost:4200/assets/lightworks-tuxedo.js:19533:9 at HANDLERS.<computed> (http://localhost:4200/assets/vendor.js:54825:11) at invoke (http://localhost:4200/assets/vendor.js:54837:11) at deprecate (http://localhost:4200/assets/vendor.js:54796:30) at Object.get [as $] (http://localhost:4200/assets/vendor.js:74910:52)

And if I add a breakpoint at the last frame from the above trace, I am here:

didInsertElement() {
      this._super(...arguments);
      Ember.$('body').addClass('cbp-spmenu-push');
},

Let me know if I can provide any more info!

Demo Source Code?

Our implementation using two slide outs is crashing in IE, however the demo is not. Can you add the demo source code to the repo so we can compare? Thanks!

Push Menu not closing

Hi There,

I just implemented this plug-in and ran into an issue closing the menu when I'm using the push setup. I took a look at the add-on code and it looks like you need something like the following in the esp-menu.js file where you inserted a comment for cleanup:

updateBodyClass() {
    let _bodyClass = this.get('bodyClass');
    if ( this.get('pushMenu') && !$('body').hasClass(_bodyClass) ) {
      $('body').addClass(_bodyClass);
    } else {
      $('body').removeClass(_bodyClass);
    }
  },

That seems to solve the problem for me however I didn't want to submit a PR in case this doesn't fit in with the bigger picture of what you're doing. Lemme know or feel free to update on your end.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.