Skip to content

Commit

Permalink
list build
Browse files Browse the repository at this point in the history
  • Loading branch information
theoomoregbee committed Sep 10, 2016
1 parent fea6017 commit dd11fd2
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
1 change: 1 addition & 0 deletions dist/angular-tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -501,4 +501,5 @@
.directive('focusMe',directive_focus) ;
}());

angular.module('angular-tag/templates', []).run(['$templateCache', function($templateCache) {$templateCache.put('angular-tag/templates/input.html','<div id="main-tag">\n<div class="tag-container">\n <ul ng-class="[\'tag\',{focus:isFocus},theme ]" ng-click="isFocus=true" ng-keydown="direction_keys($event)">\n <li ng-repeat="select in selected" ng-click="(moveToTag($event,$index)) ">\n {{select[displayField]}} <a href="javascript:void(0)" ng-click="remove(select)">&times;</a>\n </li>\n<li>\n <input name="{{name}}" ng-class="{error:hasError}" ng-model="input" ng-keyup="on_input_keyup($event)" ng-keydown="on_input_keydown($event)" ng-focus="isFocus=true" ng-blur="onblur();" focus-me="isFocus"\n type="input" placeholder="{{placeholder}}" ng-required="required && (!selected.length || selected.length==0)" >\n</li>\n </ul>\n</div>\n\n<ul class="tag-typehead" ng-show="(isFocus && input.length && typehead && results.length) || (typehead && typeheadOpened) " >\n <li class="animate-repeat" ng-repeat="item in data | filter:input as results">\n <a href="javascript:void(0)" ng-click="processor(item[displayField])">{{item[displayField]}}</a>\n </li>\n <!--<li class="animate-repeat" ng-if="results.length == 0">\n <strong>No results found...</strong>\n </li>-->\n</ul>\n</div>');}]);
angular.module('angular-tag/templates', []).run(['$templateCache', function($templateCache) {$templateCache.put('angular-tag/templates/input.html','<div id="main-tag">\n<div class="tag-container">\n <ul ng-class="[\'tag\',{focus:isFocus},theme ]" ng-click="isFocus=true" ng-keydown="direction_keys($event)">\n <li ng-repeat="select in selected" ng-click="(moveToTag($event,$index)) ">\n {{select[displayField]}} <a href="javascript:void(0)" ng-click="remove(select)">&times;</a>\n </li>\n<li>\n <input name="{{name}}" ng-class="{error:hasError}" ng-model="input" ng-keyup="on_input_keyup($event)" ng-keydown="on_input_keydown($event)" ng-focus="isFocus=true" ng-blur="onblur();" focus-me="isFocus"\n type="input" placeholder="{{placeholder}}" ng-required="required && (!selected.length || selected.length==0)" >\n</li>\n </ul>\n</div>\n\n<ul class="tag-typehead" ng-show="(isFocus && input.length && typehead && results.length) || (typehead && typeheadOpened) " >\n <li class="animate-repeat" ng-repeat="item in data | filter:input as results">\n <a href="javascript:void(0)" ng-click="processor(item[displayField])">{{item[displayField]}}</a>\n </li>\n <!--<li class="animate-repeat" ng-if="results.length == 0">\n <strong>No results found...</strong>\n </li>-->\n</ul>\n</div>');}]);
2 changes: 1 addition & 1 deletion dist/angular-tag.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions npm-debug.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/bin/node',
1 verbose cli '/usr/local/bin/npm',
1 verbose cli 'version',
1 verbose cli 'minor' ]
2 info using npm@2.15.9
3 info using node@v4.5.0
4 info git [ 'status', '--porcelain' ]
5 verbose stack Error: Git working directory not clean.
5 verbose stack M dist/angular-tag.js
5 verbose stack M dist/angular-tag.min.js
5 verbose stack at /usr/local/lib/node_modules/npm/lib/version.js:171:21
5 verbose stack at ChildProcess.exithandler (child_process.js:204:7)
5 verbose stack at emitTwo (events.js:87:13)
5 verbose stack at ChildProcess.emit (events.js:172:7)
5 verbose stack at maybeClose (internal/child_process.js:829:16)
5 verbose stack at Socket.<anonymous> (internal/child_process.js:319:11)
5 verbose stack at emitOne (events.js:77:13)
5 verbose stack at Socket.emit (events.js:169:7)
5 verbose stack at Pipe._onclose (net.js:486:12)
6 verbose cwd /Users/Theophy/dev/angular-tag
7 error Darwin 15.6.0
8 error argv "/usr/local/bin/node" "/usr/local/bin/npm" "version" "minor"
9 error node v4.5.0
10 error npm v2.15.9
11 error Git working directory not clean.
11 error M dist/angular-tag.js
11 error M dist/angular-tag.min.js
12 error If you need help, you may report this error at:
12 error <https://github.com/npm/npm/issues>
13 verbose exit [ 1, true ]

0 comments on commit dd11fd2

Please sign in to comment.