Giter VIP home page Giter VIP logo

jqm-mobile-bookmark-bubble's People

Contributors

aaronmader avatar ka2er avatar nmarsden avatar okamototk avatar rjclardy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jqm-mobile-bookmark-bubble's Issues

Windows Phone version

Could you explain how is detected window's mobile ? if it's detectable in your library.
Thanks for response

can't make it work

I've tried to have this work, no success though.
Can anyone please instruct me how to use this?

What I tried was to insert this in the HTML head:

<script type="application/javascript" src="js/bookmark_bubble.js"></script>

also tried to include the other two JavaScript files.
Nothing happens.

Also, is it possible to exclude support for iOS? I already have a working system for iOS.

Android Chrome Bookmarking

Curious if there are any plans to add support for chrome browser and it's bookmarking steps?

Steps required are:
– Open web page
– Click the three vertical dots (top corner)
– Click the "Star" icon
– Save bookmark (somewhere). Note: The old option "Save to home screen" is no longer available
– Click the three vertical dots (again)
– Go to bookmarks
– Search for the bookmark
– Hold bookmark pressed for a second
– Click "Add to home screen"

Not sure how you can explain this in a bubble anymore and hopefully we can avoid having to exclude certain browsers.

Android 4.1.* support

I have phone with Android 4.1.2. And below message from bubble is not correct for my phone:
Install app:

1) Tap |,
2) Select "Save to bookmarks",
3) Select "Add to" and then "Home"

Correct message for adding shortcut to home-screen should be like this:
Install app:

1) Add to Bookmarks,
2) Tap and Hold the bookmark,
3) Select "Add Shortcut"

I can check only on Android 4.1.2. But, maybe, this was changed started from Android 4.1. This should be checked.
Will be well to support separate message for Android 4.1 and later. To make this, necessary extend google.bookmarkbubble.Bubble.prototype.build_ function in bookmark.bubble.js.
Old:

               if (this.getAndroidVersion_() < this.getVersion_(3, 0)) {
          bubbleInner.innerHTML = this.msg.android;
               } else {
                  if ((this.getAndroidVersion_() >= this.getVersion_(4, 0)) && this.isMobile_()) {
            bubbleInner.innerHTML = this.msg.android4;
                  } else {
            bubbleInner.innerHTML = this.msg.android3;
                  }
               }

New:

        if (this.getAndroidVersion_() < this.getVersion_(3, 0)) {
            bubbleInner.innerHTML = this.msg.android;
        } else {
            if ((this.getAndroidVersion_() < this.getVersion_(4, 0))) {
                bubbleInner.innerHTML = this.msg.android3;
            } else {
                if ((this.getAndroidVersion_() < this.getVersion_(4, 1)) && this.isMobile_()) {
                    bubbleInner.innerHTML = this.msg.android4;
                } else {
                    bubbleInner.innerHTML = this.msg.android41;
                }
            }
        }

And also add translations for android41 message and change version from 1.1.2 to 1.1.3.

Android4.0(Nexus)メニューが右上にある。

Android4.0のメニューがブラウザ右上(アドレスバーの右)にあるが、下のメニューボタンをタップしろと表示される。

下記の変更を施せばいい感じになるので、Android 4.0を検出するロジックを入れて改善する

//  bubbleInner.style.margin = isIpad ? '0 0 0 200px' : '0 auto';
  bubbleInner.style.margin = isIpad ? '0 0 0 ' +(window.innerWidth - 240) + 'px' : '0 auto';

  if (isIpad || isPlayBook) {
//    arrow.style.WebkitTransform = 'rotate(180deg)';
    arrow.style.WebkitTransform = 'scale(1,-1)';
    arrow.style.top = '-19px';
  } else {
    arrow.style.bottom = '-19px';
  }

Problems With New Versions Jquery/Jquerymobile

Greetings,

Im trying to use this module with newer versions of jquery and jquerymobile ... but didnt work.

It's saids that the method live() dont work. After review jquery docs the method .live() was deprecated and now we can use the method .on()

I changed in the example.js file and didnt work too ... maybe can somebody help me to fix this issue?

Best Regards

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.