Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 516857c

Browse files
author
Brian Feister
committed
Compiled assets
1 parent 9d89d47 commit 516857c

File tree

4 files changed

+6
-44
lines changed

4 files changed

+6
-44
lines changed

dist/select.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* ui-select
33
* http://github.com/angular-ui/ui-select
4-
* Version: 0.8.3 - 2014-10-17T16:24:21.435Z
4+
* Version: 0.8.3 - 2014-10-17T20:37:37.506Z
55
* License: MIT
66
*/
77

dist/select.js

Lines changed: 2 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* ui-select
33
* http://github.com/angular-ui/ui-select
4-
* Version: 0.8.3 - 2014-10-17T18:44:25.084Z
4+
* Version: 0.8.3 - 2014-10-17T20:37:37.502Z
55
* License: MIT
66
*/
77

@@ -28,10 +28,6 @@
2828
BACKSPACE: 8,
2929
DELETE: 46,
3030
COMMAND: 91,
31-
32-
MAP: { 91 : "COMMAND", 8 : "BACKSPACE" , 9 : "TAB" , 13 : "ENTER" , 16 : "SHIFT" , 17 : "CTRL" , 18 : "ALT" , 19 : "PAUSEBREAK" , 20 : "CAPSLOCK" , 27 : "ESC" , 32 : "SPACE" , 33 : "PAGE_UP", 34 : "PAGE_DOWN" , 35 : "END" , 36 : "HOME" , 37 : "LEFT" , 38 : "UP" , 39 : "RIGHT" , 40 : "DOWN" , 43 : "+" , 44 : "PRINTSCREEN" , 45 : "INSERT" , 46 : "DELETE", 48 : "0" , 49 : "1" , 50 : "2" , 51 : "3" , 52 : "4" , 53 : "5" , 54 : "6" , 55 : "7" , 56 : "8" , 57 : "9" , 59 : ";", 61 : "=" , 65 : "A" , 66 : "B" , 67 : "C" , 68 : "D" , 69 : "E" , 70 : "F" , 71 : "G" , 72 : "H" , 73 : "I" , 74 : "J" , 75 : "K" , 76 : "L", 77 : "M" , 78 : "N" , 79 : "O" , 80 : "P" , 81 : "Q" , 82 : "R" , 83 : "S" , 84 : "T" , 85 : "U" , 86 : "V" , 87 : "W" , 88 : "X" , 89 : "Y" , 90 : "Z", 96 : "0" , 97 : "1" , 98 : "2" , 99 : "3" , 100 : "4" , 101 : "5" , 102 : "6" , 103 : "7" , 104 : "8" , 105 : "9", 106 : "*" , 107 : "+" , 109 : "-" , 110 : "." , 111 : "/", 112 : "F1" , 113 : "F2" , 114 : "F3" , 115 : "F4" , 116 : "F5" , 117 : "F6" , 118 : "F7" , 119 : "F8" , 120 : "F9" , 121 : "F10" , 122 : "F11" , 123 : "F12", 144 : "NUMLOCK" , 145 : "SCROLLLOCK" , 186 : ";" , 187 : "=" , 188 : "SPACE" , 189 : "-" , 190 : "." , 191 : "/" , 192 : "`" , 219 : "[" , 220 : "\\" , 221 : "]" , 222 : "'"
33-
},
34-
3531
isControl: function (e) {
3632
var k = e.which;
3733
switch (k) {
@@ -346,11 +342,6 @@
346342
if(ctrl.tagging.isActivated && !item && ctrl.search.length > 0) {
347343
// create new item on the fly
348344
item = ctrl.tagging.fct !== undefined ? ctrl.tagging.fct(ctrl.search) : ctrl.search;
349-
// if(ctrl.taggingTokens.isActivated) {
350-
// setTimeout(function() {}, 10);
351-
// _resetSearchInput();
352-
353-
// }
354345
}
355346

356347
var locals = {};
@@ -547,15 +538,6 @@
547538

548539
if (!processed && (ctrl.items.length > 0 || ctrl.tagging.isActivated)) {
549540
processed = _handleDropDownSelection(key);
550-
if ( ctrl.taggingTokens.isActivated ) {
551-
for (var i = 0; i < ctrl.taggingTokens.tokens.length; i++) {
552-
console.log(ctrl.taggingTokens.tokens[i])
553-
if ( ctrl.taggingTokens.tokens[i] === KEY.MAP[e.keyCode] ) {
554-
ctrl.select(null, true);
555-
_searchInput.triggerHandler('tagged')
556-
}
557-
};
558-
}
559541
}
560542

561543
if (processed && key != KEY.TAB) {
@@ -572,14 +554,6 @@
572554

573555
});
574556

575-
_searchInput.on('tagged', function() {
576-
$timeout(function() {
577-
console.log('tagged');
578-
debugger;
579-
_resetSearchInput();
580-
});
581-
});
582-
583557
_searchInput.on('blur', function() {
584558
$timeout(function() {
585559
ctrl.activeMatchIndex = -1;
@@ -817,18 +791,6 @@
817791
}
818792
});
819793

820-
attrs.$observe('taggingTokens', function() {
821-
if(attrs.tagging !== undefined && attrs.taggingTokens !== undefined)
822-
{
823-
var tokens = attrs.taggingTokens !== undefined ? attrs.taggingTokens.split('|') : [','];
824-
$select.taggingTokens = {isActivated: true, tokens: tokens };
825-
}
826-
else
827-
{
828-
$select.taggingTokens = {isActivated: false, tokens: undefined};
829-
}
830-
});
831-
832794
if ($select.multiple){
833795
scope.$watchCollection(function(){ return ngModel.$modelValue; }, function(newValue, oldValue) {
834796
if (oldValue != newValue)
@@ -1040,4 +1002,4 @@ $templateCache.put("select2/select-multiple.tpl.html","<div class=\"ui-select-mu
10401002
$templateCache.put("select2/select.tpl.html","<div class=\"select2 select2-container\" ng-class=\"{\'select2-container-active select2-dropdown-open\': $select.open,\n \'select2-container-disabled\': $select.disabled,\n \'select2-container-active\': $select.focus }\"><div class=\"ui-select-match\"></div><div class=\"select2-drop select2-with-searchbox select2-drop-active\" ng-class=\"{\'select2-display-none\': !$select.open}\"><div class=\"select2-search\" ng-show=\"$select.searchEnabled\"><input type=\"text\" autocomplete=\"off\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" class=\"ui-select-search select2-input\" ng-model=\"$select.search\"></div><div class=\"ui-select-choices\"></div></div></div>");
10411003
$templateCache.put("selectize/choices.tpl.html","<div ng-show=\"$select.open\" class=\"ui-select-choices selectize-dropdown single\"><div class=\"ui-select-choices-content selectize-dropdown-content\"><div class=\"ui-select-choices-group optgroup\"><div ng-show=\"$select.isGrouped\" class=\"ui-select-choices-group-label optgroup-header\">{{$group.name}}</div><div class=\"ui-select-choices-row\" ng-class=\"{active: $select.isActive(this), disabled: $select.isDisabled(this)}\"><div class=\"option ui-select-choices-row-inner\" data-selectable=\"\"></div></div></div></div></div>");
10421004
$templateCache.put("selectize/match.tpl.html","<div ng-hide=\"$select.searchEnabled && ($select.open || $select.isEmpty())\" class=\"ui-select-match\" ng-transclude=\"\"></div>");
1043-
$templateCache.put("selectize/select.tpl.html","<div class=\"selectize-control single\"><div class=\"selectize-input\" ng-class=\"{\'focus\': $select.open, \'disabled\': $select.disabled, \'selectize-focus\' : $select.focus}\" ng-click=\"$select.activate()\"><div class=\"ui-select-match\"></div><input type=\"text\" autocomplete=\"off\" tabindex=\"-1\" class=\"ui-select-search ui-select-toggle\" ng-click=\"$select.toggle($event)\" placeholder=\"{{$select.placeholder}}\" ng-model=\"$select.search\" ng-hide=\"!$select.searchEnabled || ($select.selected && !$select.open)\" ng-disabled=\"$select.disabled\"></div><div class=\"ui-select-choices\"></div></div>");}]);
1005+
$templateCache.put("selectize/select.tpl.html","<div class=\"selectize-control single\"><div class=\"selectize-input\" ng-class=\"{\'focus\': $select.open, \'disabled\': $select.disabled, \'selectize-focus\' : $select.focus}\" ng-click=\"$select.activate()\"><div class=\"ui-select-match\"></div><input type=\"text\" autocomplete=\"off\" tabindex=\"-1\" class=\"ui-select-search ui-select-toggle\" ng-click=\"$select.toggle($event)\" placeholder=\"{{$select.placeholder}}\" ng-model=\"$select.search\" ng-hide=\"!$select.searchEnabled || ($select.selected && !$select.open)\" ng-disabled=\"$select.disabled\"></div><div class=\"ui-select-choices\"></div></div>");}]);

dist/select.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)