~gg-lp/music-app/music-app

« back to all changes in this revision

Viewing changes to MusicTracks.qml

  • Committer: Andrew Hayzen
  • Date: 2014-10-26 16:18:12 UTC
  • mto: This revision was merged to the branch mainline in revision 703.
  • Revision ID: ahayzen@gmail.com-20141026161812-vyjmpix3qblwgaph
* Fix for using === instead of ==
* Fix for comment grammar

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
                        var comp = Qt.createComponent("MusicaddtoPlaylist.qml")
70
70
                        var addToPlaylist = comp.createObject(mainPageStack, {"chosenElements": items});
71
71
 
72
 
                        if (addToPlaylist === null) {  // Error Handling
 
72
                        if (addToPlaylist == null) {  // Error Handling
73
73
                            console.log("Error creating object");
74
74
                        }
75
75