Giter VIP home page Giter VIP logo

jqueryui's Introduction

jqueryui's People

Contributors

benschwarz avatar brunowinck avatar chengyin avatar danielnixon avatar flack avatar gvarela avatar johanneswuerbach avatar ltrebing avatar michaelglass avatar miguelsm avatar mrohnstock avatar paulirish avatar pelson avatar petebacondarwin avatar robloach avatar scimonster avatar strathmeyer avatar umeboshi2 avatar vendethiel 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

jqueryui's Issues

minified files can't be resolved

How can I use minified files?

The files are in the folder:

/ui/minified/

For example, the file autocomplete.min.js:
define(["jquery","./core","./widget","./position","./menu"],t)

has dependences which can't be resolved because the min files has the suffix "min" (core.js doesn't exists, the name is core.min.js).

This can be fixed if you don't add the suffix "min" to files in minified folder.

AMD loading broken on minified scripts

Using requirejs and trying to use jquery ui plugins from the minified/ directory raises a "Error: Script error for: jquery-ui/core". This is because minified scripts depend on non-minified scripts (eg. "./core" instead of "./core.min").

This occurs in version 1.11.2, installed with Bower.

Component Support

@Nami-Doc Any reason why component.json isn't there anymore?

{
  "name": "jquery-ui",
  "repo": "components/jqueryui",
  "version": "1.10.3",
  "scripts": [
    "ui/jquery-ui.custom.js"
  ],
  "dependencies": {
    "components/jquery": ">= 1.8"
  }
}

Keep this alive?

This is not a code issue, just a way to contact the authors of this repo. I'm on the jQuery UI team and we've been discussing bower support recently. Due to various limitations of bower itself, we currently think the best approach for bower users is to keep this separate repo up-to-date, providing both individual and compiled files (for example, ui/jquery-ui.js). Are you okay with that? We'd be happy to keep things as-is.

If you wonder what limitations I'm talking about: It mostly comes down to the lack of publishing files, comparable to how npm handles that. If we were to take over the 'jqueryui' bower package, we'd have to go back and update old tags to include compiled files. Even then, the structure of our repo doesn't match the structure of this repo, so we'd likely end up breaking existing applications. I don't think that's in anyones interest.

Failed to download bower-asset/jquery-ui from dist

Hi, i have this error.
Seems that it tries to get file, which not exists already, but now i don`t know how to deal with it
Here what i see now)

[RuntimeException]
Failed to execute git checkout '44ecf3794cc56b65954cc19737234a3119d036cc' -- && git reset --hard '44ecf3794cc56b65954cc19737234a3119d036cc' --

fatal: reference is not a tree: 44ecf37

Add older version?

Hi,
Is it possible to add older versions?
At least all 1.8.x

Thanks,
Dragan

Latest NPM Package Version (1.12.1) of code is different from Bower version

Migrating dependencies from Bower, and while attempting to swap to NPM, I found a mismatch in code versions between the two package managers.

The 1.12.1 version on Bower points to this commit, while the NPM package version is pulling a .tgz file, which does not match the Bower counterpart, and is missing quite a few widgets.

Would it be possible to update the NPM listing to use the same source as Bower?

Yii2

I want to add jquery ui to my yii2 advance project.

Please guide me to add this to my project using composer.I am using
composer require components/jqueryui
to add this to my project. But after update i'm unable to find asset name created after this. I recently started coding in yii2 after 1.5 year, so i'm a bit lost. Do i need to create my own assets bundle. Or is there any other way (using bower). Because after this update i am finding jquery folder in app/vendor/bower and app/vendor/components folder?

Missing CSS files

I used to be able to individually include base/core.css and base/datepicker.css into my app.
These are still present in 1.12.0 of jquery-ui but are not in this shim repo.

css file is not added in bower json

Bower json only have js file so css file is missing when we use grunt.

bower json should contain

"main": [
"ui/jquery-ui.js", "themes/base/jquery-ui.css"
],

but that css file is missing.

Missing “ignore” entry in bower.json

When I install this module using Bower, I get the following warning:

bower invalid-meta  jquery-ui is missing "ignore" entry in bower.json

I don’t really have a clue about Bower, but based on bower/bower#1388 I understand that this would be fixed by simply including an empty “ignore” array in the file.

Copy of #46 : no solution provided

Hi,
Sorry but the link (http://symfony.com/doc/current/cookbook/assetic/asset_management.html#including-css-stylesheets) provided in #46 gives samples on how to load either multiple css or multiple js files (using the respective blocks) but only how to load one image at a time.
My issue is that the images cannot be accessed (I'm using cssrewrite) and it works fine for all images but the jqueryui ones !
The issue may come from where the jqueryui packages copy the files (componenets directory) which is not taken into account by the cssrewrite ?

Typically with the default location you have the images loaded from css file with something like this
background-image:url("images/ui-icons_72a7cf_256x240.png")
and when dumping the assets you get in web/css something that points to
background-image:url("../../images/ui-icons_ffffff_256x240.png")
which effectively points to nowhere because the directory images is not at this location (app/images) at all, it is located in app/components/jquery-ui/themes/{theme-name}/images !

sparse checkout theme via Bower

Is it possible to only checkout one folder from the /themes folder by using git sparse checkout ?

In that case this repo could be used to checkout themes via Bower as well. I've been searching for an easy way, but was unable to find a solid answer.

showCurrentAtPos problem

The 'showCurrentAtPos' parameter cause unexpected problems with the multi-month view. The prev button fails to work. The next button forwards 3 months at a time and when clicking any date it acts like the prev button should.

1.12.0 moves files under ui?

I would have expected 1.12.0 not to have breaking changes. However, many files were moved from ui to ui/widgets. Per the documentation on using jquery-ui with bower, we are encouraged to use just the parts of jquery-ui our app needs to avoid downloading the whole thing. One example of such a link is given as:

<script src="bower_components/jquery-ui/ui/accordion.js"></script>

which now won't work, because accordion.js has been moved.

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.