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
| Refresh Android mediastore using adb | |
| up vote | |
| 3 | |
| down vote | |
| favorite | |
| 1 | |
| I'm using adb to sync music on an android phone. Essentially, I rm the existing music directory and push replacement music files. | |
| I'd like to be able to use adb to force a rescan, so that the google music player (and other apps) works properly with the new songs and playlists. |
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
| class SearchView extends Backbone.View | |
| el: $ '#submitbtn' | |
| initialize: -> | |
| _.bindAll @, "searchStart", "makeSelectedTextHighLight" | |
| @.collection = new Dichelp.Collections.SelectedWords | |
| @.sources = Dichelp.Collections.WebAPIs | |
| return undefined | |
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
| // Generated by CoffeeScript 1.7.1 | |
| (function() { | |
| var SearchView, searchView, | |
| __hasProp = {}.hasOwnProperty, | |
| __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; | |
| SearchView = (function(_super) { | |
| __extends(SearchView, _super); | |
| function SearchView() { |
OlderNewer