This repository was archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
refactor(commonjs): Added support for npm and commonjs #932
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add directory to path in main
👍 Why wasn't this in before? |
…tems for the index receive
Add paste="expression" to allow custom paste handling. Allow pasting in tagging mode when the tagging function is not defined. In IE use window.clipboardData so jQuery is not required. Fixes angular-ui#910, angular-ui#704, angular-ui#789, angular-ui#848, angular-ui#429
Also a bit of tidying
👍 |
When will this be merged? |
👍 |
What is going on here? |
Please pull this in for release... doing hackery to get this working in my project can be avoided :) Thanks |
@dimirc Can you merge this PR in please? |
fix jshint warning
fix(uiSelectSort): fix dependency not found error
docs(onSelectCallback): update onSelectCallback example
Fix broken ng-click
Add proper paste support
Including conditional to don't break remove choice when there is no i…
…ellipe/ui-select into giorgiofellipe-feat/minimumInputLength # Conflicts: # dist/select.js
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added
ui.select
to module exports so that after installing via npm, the package can be required in the angular module dependency list such as:angular.module('myApp', [require('angular-ui-select')]);
This is helpful for Browserify and Webpack.